Quasar can either refer to 1) an open-source Vue.js based framework for building Web / Mobile / Desktop apps, or 2) Java library that provides threads, actors and channels for the JVM
Questions tagged [quasar]
887 questions
35
votes
5 answers
How can I change the Kotlin compiler version on IntelliJ?
In IntelliJ you can set the target Java version like this:
Unfortunately I don't see a place where I can do the same for Kotlin. This makes it not possible for me to use Quasar-Kotlin. I want to switch to M14 even though I have 1.0 beta installed.…

Jire
- 9,680
- 14
- 52
- 87
26
votes
2 answers
How to uninstall a globally installed package with Yarn?
I installed Quasar framework using Yarn:
yarn global add @quasar/cli
However there seems to be an issue with the installation and I now need to remove the global package. I checked the Yarn docs and they have a remove command but it does not seem to…

ZekeC
- 393
- 1
- 3
- 13
26
votes
5 answers
How can I turn off the workbox browser console messages?
Very simply, I would like to disable the display of the repeated workbox messages that appear in my browser console while I am debugging. For instance, I don't need to see:
WorkBox: Using NetworkFirst to respond to…

murmeister
- 582
- 1
- 4
- 7
14
votes
2 answers
VueJS 2 debounce on multiple components
I have a Vue component that uses multiple sub-components on it. And on those sub-components I have a watcher that watches for data changes and processes those changes. I would like to implement debounce for this.
watch: {
data: {
…

Raimundas Juška
- 143
- 1
- 5
13
votes
3 answers
image url to file() object using js
For a registration module in my vue app I let users upload images in a form. I upload these images to my storage and save the download url of this photo in the registration. When editing a registration I need to get the photo's out of the storage…

Travinns
- 263
- 1
- 3
- 13
13
votes
2 answers
Async method not waiting for a function - VUE
i'm having this error and haven't got to resolve it though have researched a lot in MDN and here. As title saysinto VUE i'm trying to use async and await but js is not waiting the 'await' function to end. Here it is:
methods: {
async search…

Leo Prada
- 160
- 1
- 2
- 9
11
votes
6 answers
With Vue-cli, where do I declare my global variables?
In most Vue.js tutorials, I see stuff like
new Vue({
store, // inject store to all children
el: '#app',
render: h => h(App)
})
But I'm using vue-cli (I'm actually using quasar) and it declares the Vue instance for me, so I don't know where…

Louis Ameline
- 2,779
- 1
- 25
- 25
10
votes
0 answers
Kotlin compiler error inline function, not exactly sure what's going on
I got this confusing error that seems to be in the Kotlin compiler, I don't mind changing my code but I am trying to figure out if I actually did something wrong. I think the code it's having trouble with is this:
inline fun …

zjuhasz
- 1,489
- 12
- 30
9
votes
1 answer
quasar : What is `Cordova id`?Where can I get it?
This is the first time I used quasar,I am creating a project with Quasar CLI following the docs (https://quasar-framework.org/guide/app-installation.html)
λ quasar init quasar_demo
Running command: vue init 'quasarframework/quasar-starter-kit'…

zwl1619
- 4,002
- 14
- 54
- 110
9
votes
2 answers
Lightweight threads in Akka
I recently read about Quasar which provides "lightweight" / Go-like "user mode" threads to the JVM (it also has an Erlang inspired Actor system like Akka but that's not the main question)
For example:
package jmodern;
import…

Eran Medan
- 44,555
- 61
- 184
- 276
8
votes
1 answer
how to select a default value in q-select from quasar?
I need my q-select to select the "name" depending on the previously assigned "id".
Currently the input shows me the "id" in number and not the name to which it belongs.

Nc92
- 93
- 1
- 4
8
votes
3 answers
How do I register component globally in Quasar?
I have a component which I'll be using in every page of my web-app. To simplify my work how do I register this component globally? I used nuxt once and it was so easy by npm @nuxtjs/global-components. What is process with Quasar? Thank you!

Eldar Tailov
- 358
- 5
- 18
7
votes
1 answer
Ref not working on custom component in Vue3
I'm using Vue3 with the composition API. In a form-component I put ref's on each field (child-component).
For some reason the ref's of the custom components are different from ref's for Quasar components.
When I console.log a ref to a custom…

Dylan
- 9,129
- 20
- 96
- 153
7
votes
1 answer
q-table - inser action button for each row (Quasar 2)
not much more to add beyond the title. i'm looking to add a custom column to a quasar q-table (laravel / vue3) that will hold row edit / delete actions

Matthew Speicher
- 93
- 1
- 6
7
votes
2 answers
q-input has value then only Rules will apply
If q-input has value != '' then only i want to apply the Rules like required 8 number maximum. In the below code it gives me the required input error even it's null.

Shubham Sankpal
- 133
- 2
- 10