Navigation

    Quasar Framework

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. Useful Tips (NEW)
    Log in to post
    • Newest to Oldest
    • Oldest to Newest
    • Most Posts
    • Most Votes
    • R

      Tip : Navigation links to External Urls
      • rab

      2
      0
      Votes
      2
      Posts
      7
      Views

      beets

      Useful tip, you could also do something like this:

      // generate nav links as a list of q-items <q-list> <q-item v-for="(item,id) in items" :key="id" exact tag="a" v-bind="item"> <q-item-section> <q-item-label> {{ item.label }} </q-item-label> </q-item-section> </q-item> </q-list>

      And bind all attributes to the item. Binding unused attributes like label usually isn’t a problem, if you wanted could also do:

      // the data data () { return { items: [ { label: 'One', attrs: { to: '/one' } }, { label: 'Two', attrs: { to: '/two' } }, { label: 'Bing', attrs: { href: 'http://bing.com', target: '_blank' } } ] }}

      And v-bind="item.attrs"

    • patryckx

      Investment account dashboard
      • patryckx

      4
      2
      Votes
      4
      Posts
      33
      Views

      patryckx

      @metalsadman thanks for the feedback

    • PeterQF

      Left Plesk for something great regarding hosting
      • PeterQF

      1
      1
      Votes
      1
      Posts
      10
      Views

      No one has replied

    • Y

      Example of combining Laravel 8 and Quasar superpowers in separate repos
      example laravel7 quasar sanctum spa • • yolosan

      4
      1
      Votes
      4
      Posts
      73
      Views

      Y

      Sorry for the late answer.

      @irexqudiet said in Example of combining Laravel 7 and Quasar superpowers in separate repos:

      Status Code: 419 unknown status why did i get this error when i try logging in

      It’s usually due to misconfiguration of these variables in your .env file: SANCTUM_STATEFUL_DOMAINS and SESSION_DOMAIN

      Check out the note here.

    • Pratik Patel

      Quasar ECharts Sample Application
      • Pratik Patel

      2
      3
      Votes
      2
      Posts
      164
      Views

      Pratik Patel

      Hello Guys, I have updated the Quasar Echarts demo app with Echarts v5.You can access it using the following URL.

      Github - https://github.com/pratik227/quasar-echarts

      Demo - https://quasar-echarts-v5.netlify.app/

      QuasarEchartV5.png

    • A

      quasar configured for scss, error on build
      build • • asonis

      1
      0
      Votes
      1
      Posts
      8
      Views

      No one has replied

    • patryckx

      Quasar e Apex Charts [Sample application]
      • patryckx

      15
      3
      Votes
      15
      Posts
      1477
      Views

      patryckx

      New examples added!

      Captura de Tela 2021-01-08 às 11.22.56.png

      Captura de Tela 2021-01-08 às 11.23.02.png

    • Pratik Patel

      Updated Quasar Admin Template
      • Pratik Patel

      8
      3
      Votes
      8
      Posts
      81
      Views

      P

      Very cool

    • ssuess

      Web worker setup that (mostly) works
      • ssuess

      3
      5
      Votes
      3
      Posts
      51
      Views

      P

      Good work .

    • beets

      Disabling import strategy
      • beets

      3
      1
      Votes
      3
      Posts
      16
      Views

      beets

      And for visual people, here’s a before / after of webpack analyze:

      webpack

    • ahiguita

      How to use Firebase Messaging, Dynamic Links and Analytics with Quasar and Android 9
      • ahiguita

      2
      2
      Votes
      2
      Posts
      20
      Views

      N

      Thanks!!!

    • Pratik Patel

      Quasar Gaming Template
      • Pratik Patel

      2
      2
      Votes
      2
      Posts
      47
      Views

      OceanDean

      Nice one! Hope it will fit my new website!
      I am pro at digital gaming, so I created a website which is dedicated to my hobby ^^

    • Pratik Patel

      QGrid v0.0.2 has been released!!
      • Pratik Patel

      14
      3
      Votes
      14
      Posts
      208
      Views

      Pratik Patel

      Hi @gs86,

      I never worked on server side pagination and filter with QTable. I have tried to implement in QGrid but no luck yet.

      Thanks

    • M

      [V1] A guide for @quasar/dotenv
      cli dotenv extension v1.0 • • mKomo

      14
      5
      Votes
      14
      Posts
      1212
      Views

      B

      @ArkIv That’s good.

      dotenv not working my quasar. so I mixed your method + qenv.

      .quasar.env.json

      { "development": { "ENV_TYPE": "Running Development", "ENV_DEV": "Development", "API_URL": "https://dev.some.com" }, "production": { "ENV_TYPE": "Running Production", "ENV_PROD": "Production", "API_URL": "https://some.com" }, "test": { "ENV_TYPE": "Running Test", "ENV_Test": "Test" }, "stage": { "ENV_TYPE": "Running Stage", "ENV_STAGE": "Stage", "API_URL": "https://stg.some.com" } }

      quasar.conf.json

      const configEnv = require('./.quasar.env.json') module.exports = configure(function (ctx) { return { ...... env: { // for settting proxy address with ctx.dev, ctx.prod IS_STAGE: false, }, }, devServer: { proxy: { // proxy all requests starting with /api to specific url '/api': { target: ctx.prod ? configEnv["production"].API_URL : process.env.IS_STAGE ? configEnv["stage"].API_URL : configEnv["development"].API_URL, changeOrigin: true, pathRewrite: { '^/api': '' } },
    • qyloxe

      New Mozilla's web-ext CLI
      • qyloxe

      3
      0
      Votes
      3
      Posts
      22
      Views

      qyloxe

      @dobbel https://en.wikipedia.org/wiki/Lotka–Volterra_equations

    • qyloxe

      Web workers - how to use in Quasar
      • qyloxe

      25
      4
      Votes
      25
      Posts
      144
      Views

      qyloxe

      @aislan said in Web workers - how to use in Quasar:

      Right now I’m just struggling with Quasar to place my worker files in another place not in statics folder.
      I would like to put them next my actions folder, etc.

      with the method described on top, you can put them anywhere - as long as they have an extension .worker.js. The webpack will do his job and properly inline/bundle your code.

      And related to workerize-loader, how could we test them with Jest, for example ?

      Don’t know 😞 carefully??? This should be asked to the author/users group, probably.

    • patryckx

      Quasar Framework + Speech API
      • patryckx

      9
      2
      Votes
      9
      Posts
      370
      Views

      patryckx

      @jmriyaz84 said in Quasar Framework + Speech API:

      https://developer.mozilla.org/pt-BR/docs/Web/API/SpeechRecognition#Browser_compatibility

      Well, for browsers I don’t think there is a solution. Unless you force iphone users to use chrome for this.

      You have the alternative of generating hybrid apps with corva and using the TTS plugin:

      https://www.npmjs.com/package/cordova-plugin-tts

    • qyloxe

      Using FFmpeg WASM in Quasar
      • qyloxe

      5
      1
      Votes
      5
      Posts
      28
      Views

      qyloxe

      @dobbel said in Using FFmpeg WASM in Quasar:

      @qyloxe
      Not wanting to hijack you thread, but I found this plugin to wrap .asm files for use in vue:

      feel free to hijack or byejack 🙂

      Could that be interesting approach to integrate/use .asm in Vue?

      Sure. The ffmpeg is interesting because it is highly useful in some applications. The general WASM imho is rather hard to find a purpose at least in my line of work.

      Anyway - you asked about general solution - from the user point of view, then yes, this is specialized project, BUT from a developer point of view, the whole ffmpeg integration as a project a developer environment on github could be useful in other wasm projects. BUT on the other hand, the new WASM projects are started with rust or nim with llvm backend probably, so I don’t really know if it could/would be useful in real world applications.

      So, ffmpeg in the browser could be VERY useful. From what I’ve seen it is an early project BUT there’s active development.

    • R

      This topic is deleted!
      • reks

      1
      0
      Votes
      1
      Posts
      4
      Views

      No one has replied

    • mayank091193

      Quasar Admin CRM - Global dark mode (All pages)
      • mayank091193

      6
      4
      Votes
      6
      Posts
      72
      Views

      I

      Hello, I’m driving crazy trying to adapt colorschemes I found in Dashblocks.
      https://slanatech.github.io/dashblocks-template/#/
      It’s very powerfull and made for complex graphs. I’d like something more simple to parameter a dashboard like yours.
      I’m trying to use the store for this and hope to make conditional colors for displays, but I’m still learning Vue…