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. Slowaways
    3. Topics
    • Profile
    • Following 0
    • Followers 0
    • Topics 3
    • Posts 3
    • Best 0
    • Groups 0

    Topics created by Slowaways

    • Slowaways

      How to get the object of selected option?
      Framework • • Slowaways

      2
      0
      Votes
      2
      Posts
      1733
      Views

      benoitranque

      Here you go:

      ... <q-select color="secondary" v-model="select" :options="listOptions" /> ... select: { label: 'Google', icon: 'email', value: 'goog' }. listOptions: [ { label: 'Google', icon: 'email', value: { label: 'Google', icon: 'email', value: 'goog' } }, { label: 'Facebook', icon: 'chat', description: 'Enables communication', value: { label: 'Facebook', icon: 'chat', description: 'Enables communication', value: 'fb' } } ] ...
    • Slowaways

      How to compile my own version of Quasar Framework?
      Framework • • Slowaways

      2
      0
      Votes
      2
      Posts
      791
      Views

      P

      WARNING - highly experimental and you’re pretty much on your own doing this 🙂

      If you’re using the dev branch of QuasarFramework, keep in mind it is unstable and it can change any time.

      The steps to compile are:

      git clone https://github.com/slowaways/quasar.git npm install npm run build
      After the build step you’ll get a dist folder holding the compiled quasar framework.

      You can then use this self compiled one in your own application by replacing the content of the node_modules/quasar-framework/dist folder.