@Max You are right, I will switch to quasar-cli, ty
Best posts made by ouaR
-
RE: vue-cli 3 quasar plugin and default config
Latest posts made by ouaR
-
RE: q-select with pre-filled data, how to put value in the form but show label?
Check “map-options” and “emit-value” props on QSelect !
-
QPagination - don't emit "input" on "max" props update?
Any solution to not trigger model update when the props “max” is updated ?
Thank you -
RE: Pull to Refresh not working
You have to call the “done” function.
refresher (done) { setTimeout(() => { console.log("Refresh") done() }, 1000) }
-
RE: @click does not fire with q-btn
this example will find for a method called “alert” in your vue component methods.
Try this instead:
<q-btn flat color=“brown” size=“lg” align=“right” label=“WATCHING” @click=“() => alert(‘hello world’)” />
or use a new method. -
RE: Page reload messes up JWT in authorization header
@conducto I think you are using LocalStorage helper from quasar. Try to use regular window.localStorage.
-
RE: Getting starting with default quasar project and vue
Why don’t you use
quasar init <project_name>
? -
RE: Failed to resolve directive
If your custom directive is called ‘capde’, you should use it like this:
<section v-capde></section>
-
RE: vue-cli 3 quasar plugin and default config
@Max You are right, I will switch to quasar-cli, ty
-
vue-cli 3 quasar plugin and default config
I am using vue-cli 3 quasar plugin.
How can I define default config for Quasar plugins in vue.config.js (for example, Notify) ?
{ pluginsOptions: { quasar: { theme: 'mat', ......? } } }