- Create a new project using @vue/cli (Vue3)
- Add as Quasar a plug in ( https://quasar.dev/start/vue-cli-plugin) - Enable Quasar tree-shaking (recommended)
- Configure Vue 3 to generate multiple pages using multi page mode https://cli.vuejs.org/config/#pages
- This will generate a separate HTML page that references generated tree-shaken JS files for each entry point.
Best posts made by tohagan
-
RE: How to use Quasar to build a Multi Page Application
-
RE: Quasar Framework + Speech API
I’ve already created and tested (but not published) Quasar components for text to speech and voice selection. Might combine our efforts if you’re interested.
Latest posts made by tohagan
-
RE: Customise Notify action buttons with QBtn API props
Was an old app and turned out that I just needed to upgrade Quasar.
-
Customise Notify action buttons with QBtn API props
Looking at the code for the
Notify
plugin I can see that it’s generating QBtn’s and appears to accept any QBtn prop for any notifyaction
that you can set either viaattrs
or...props
. However I can’t seem to make either work. Specifically I’d like to set the background color for an action button.this.$q.notify({ message: "some message, color: "white", textColor: "primary", avatar: this.logo, rounded: true, multiLine: true, timeout: 0, actions: [ { label: "OK", style: "background: primary; color: white" } ] });
-
RE: Quasar app using cordova-plugin-media to play sound files => error "code 1"
Another option might be to embed the sounds as base64 encoded data URI’s. This solution may not be what you need for large audio files or many audio file but ok for short audio like click / alarm sounds.
I think this webpack loader plugin would base64 encode your audio file and add the audio mime type as in the jsfiddle example
See https://quasar.dev/quasar-cli/handling-webpack for details on how to add webpack plugins to Quasar.
-
Keeping up with the PWA Jones's
Just noticed this announcement that may be of interest to PWA development as it mentioned a few new features.
https://www.thurrott.com/dev/237715/microsoft-worked-with-google-to-bring-pwas-to-the-play-store
-
RE: @quasar/app v1.7.0 released! New build mode: "bex"
Thanks Allen. More excellent Quasar grade docs for BEX. Well done.
-
RE: "Chat"-like Scroll to Bottom
This might also be useful … https://github.com/theomessin/vue-chat-scroll
-
RE: How to use Quasar to build a Multi Page Application
- Create a new project using @vue/cli (Vue3)
- Add as Quasar a plug in ( https://quasar.dev/start/vue-cli-plugin) - Enable Quasar tree-shaking (recommended)
- Configure Vue 3 to generate multiple pages using multi page mode https://cli.vuejs.org/config/#pages
- This will generate a separate HTML page that references generated tree-shaken JS files for each entry point.
-
RE: @quasar/typescript preview Available
Looking forward to this. Typescript is now critical for acceptance in many commercial/govt contexts.
-
RE: List of Starter Kits per Programming Language and the Backend Framework
Very nice … I think this belongs on the main Quasar site or Quasar Awsome
-
RE: Quasar Framework + Speech API
I’ve already created and tested (but not published) Quasar components for text to speech and voice selection. Might combine our efforts if you’re interested.