Navigation

    Quasar Framework

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. ouaR
    O
    • Profile
    • Following 0
    • Followers 0
    • Topics 3
    • Posts 16
    • Best 2
    • Groups 0

    ouaR

    @ouaR

    2
    Reputation
    336
    Profile views
    16
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    ouaR Follow

    Best posts made by ouaR

    • RE: vue-cli 3 quasar plugin and default config

      @Max You are right, I will switch to quasar-cli, ty

      posted in Help
      O
      ouaR
    • RE: Wrong page rendering

      @vitorfhc Use <router-link> instead of <a> tag

      posted in Framework
      O
      ouaR

    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 !

      posted in Help
      O
      ouaR
    • QPagination - don't emit "input" on "max" props update?

      Any solution to not trigger model update when the props “max” is updated ?
      Thank you 🙂

      posted in Framework
      O
      ouaR
    • RE: Pull to Refresh not working

      You have to call the “done” function.

      refresher (done) {
         setTimeout(() => {
           console.log("Refresh")
           done()
         }, 1000)
       } 
      
      posted in Help
      O
      ouaR
    • 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.

      posted in Help
      O
      ouaR
    • RE: Error 'Uncaught (in promise)' in router guard (boot/router-auth.js)

      read this.
      https://github.com/vuejs/vue-router/issues/2881#issuecomment-520554378

      posted in Help
      O
      ouaR
    • 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.

      posted in Help
      O
      ouaR
    • RE: Getting starting with default quasar project and vue

      Why don’t you use quasar init <project_name> ?

      posted in Help
      O
      ouaR
    • RE: Failed to resolve directive

      If your custom directive is called ‘capde’, you should use it like this:
      <section v-capde></section>

      posted in Help
      O
      ouaR
    • RE: vue-cli 3 quasar plugin and default config

      @Max You are right, I will switch to quasar-cli, ty

      posted in Help
      O
      ouaR
    • 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',
                 ......?
             }
         }
      }
      posted in Help
      O
      ouaR