No More Posting New Topics!

If you have a question or an issue, please start a thread in our Github Discussions Forum.
This forum is closed for new threads/ topics.

Navigation

    Quasar Framework

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. terry
    3. Posts
    T
    • Profile
    • Following 0
    • Followers 0
    • Topics 4
    • Posts 10
    • Best 1
    • Groups 0

    Posts made by terry

    • Available Slot List for Component

      Hi,

      Does Examples on Quasar play are only resource to reference the available slots?
      As I Know Some of Components( breadcrumbs, q-table…) use slot for set property or customize. But It is hard to find which properties can be get and set by slot or slot-scope other than some examples. Please share the hint for this, Thanks!

      posted in Help
      T
      terry
    • Any Sample usage QUploader to Google Drive

      anybody have working code of “QUploader” that send file to google drive?
      thanks in advance

      posted in Help
      T
      terry
    • RE: How to change launch.json or package.json for run dev or build in VS Code for 0.15.x

      I update as below for start debug of “quasar dev” for VS code , It works as I expected. In order debuging in VS code, have to launch “Debug Quasar” after start debug.

      "configurations": [
      
      	   {
      		   "type": "node",
      		   "request": "launch",
      		   "name": "Launch Program",
      		   "program": "/usr/local/bin/quasar",
      		   "args": ["dev"]
      	   },
      posted in Help
      T
      terry
    • RE: dev/build in VS Code IDE

      Thanks @a47ae, as you comment, I edit as below, it works as I expected. Thanks again.

      {
      “type”: “node”,
      “request”: “launch”,
      “name”: “Launch Program”,
      “program”: “/usr/local/bin/quasar”,
      “args”: [“dev”]
      },

      posted in Help
      T
      terry
    • RE: npm tasks 'dev' and 'build' not available in 0.15

      thanks @Max, will try as you comment with both PHPStorm and VS Code

      posted in Framework
      T
      terry
    • RE: How to change launch.json or package.json for run dev or build in VS Code for 0.15.x

      Thanks @LaurentPayot ,

      after add the line in package.json as you comment,
      I also add to this launch.json as below

      “configurations”: [

      	{
      		"type": "node",
      		"request": "launch",
      		"name": "Start quasar",
      		"runtimeExecutable": "npm",
      		"runtimeArgs": [
      			"run-script",
      			"dev"
      		]
      	},
         {
        "type": "chrome",
        "request": "launch",
        "name": "Debug Quasar",
        "url": "http://localhost:8080",
        "webRoot": "${workspaceRoot}",
        "sourceMaps": true,
        "sourceMapPathOverrides": {
          "webpack:///*": "${webRoot}/*"
        }
      	 }
      ],
      

      then once “Start without debugging” ( ^F5) for “Start Quasar” , And then “Start debug” of “Debug quasar” configuration. Then I could start hot-reload state of my app and debug with VS Code, even I am not sure it is the best.

      posted in Help
      T
      terry
    • dev/build in VS Code IDE

      I would like to fire “quasar dev” or “quasar build” in VS Code as before( 0.14.7 <) with “launch.json” as below

      "configurations": [
      	{
      		"type": "node",
      		"request": "launch",
      		"name": "Launch Program",
      		"program": "${workspaceRoot}/build/script.dev.js"
      	}
      ] 
      

      from the 0.15.x, I lost the stat point with VS Code.
      I hope to get workaround. Thnaks

      posted in Help
      T
      terry
    • RE: npm tasks 'dev' and 'build' not available in 0.15

      I use PHPStorm as IDE. With the previous version of Quasar I could use the built-in npm taskrunner, to start ‘dev’ or ‘build’.

      With 0.15 only the npm tasks ‘lint’ and ‘test’ are available. I have to do ‘quasar dev’ from the command-line to run my app, but I prefer being able to do this from within PHPStorm.

      Any workaround for this ?

      posted in Framework
      T
      terry
    • RE: npm tasks 'dev' and 'build' not available in 0.15

      ( this is same question with bobdylan, other thing is I use VS Code)

      I use VS code as IDE. With the previous version of Quasar I could use the built-in debugger/npm taskrunner, to start ‘dev’ or ‘build’.

      With 0.15 only the npm tasks ‘lint’ and ‘test’ are available. I have to do ‘quasar dev’ from the command-line to run my app, but I prefer being able to do this from within VS Code.

      Any workaround for this ?

      posted in Framework
      T
      terry
    • How to change launch.json or package.json for run dev or build in VS Code for 0.15.x

      with the 0.14.7 version, I use VS Code as below “launch.json”

      "configurations": [
      	{
      		"type": "node",
      		"request": "launch",
      		"name": "Launch Program",
      		"program": "${workspaceRoot}/build/script.dev.js"
      	}
      ]
      

      then, for quasar 0.15.x , what I have to do dev/build in VS Code?

      even I add the dev/build lines in package.json

      “scripts”: {
      “lint”: “eslint --ext .js,.vue src”,
      “test”: “echo “No test specified” && exit 0”,
      “dev”: “quasar dev”,
      “build”: “quasar build”
      }…

      and

      launch.json is modified as below

      	{
      		"type": "node",
      		"request": "launch",
      		"name": "Launch via NPM",
      		    "cwd": "${workspaceFolder}",
      		"runtimeExecutable": "npm",
      		"runtimeArgs": [
      			"run",
      			"dev"
      		],
      		"port": 8080
      	}
      

      but it not work.

      I hope to get help ㅠㅠ

      posted in Help
      T
      terry