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
7
votes
1 answer
Vue router : TypeError: Cannot read property '$createElement' of undefined
So, I am pretty new to vue.js and it might very well be as stupid mistake from me, but alas, Google doesn't seem to be my friend today as I've been searching for a bit more than 2 hours and found nothing.
My problem occurs when trying to load a…

Tom
- 1,357
- 2
- 13
- 32
7
votes
1 answer
How to get environment variable from Quasar Framework
The environment variables are defined in config/ directory prod.env.js and dev.env.js, how to get those variable on .vue file?
I've tried using process.env.MY_VAR assuming it's nodejs built-in library, it gives an error:
[======= ] 34%…

Kokizzu
- 24,974
- 37
- 137
- 233
7
votes
1 answer
Highly Concurrent Apache Async HTTP Client IOReactor issues
Application description :
I'm using Apache HTTP Async Client ( Version 4.1.1 ) Wrapped By Comsat's Quasar FiberHttpClient ( version 0.7.0 ) in order to run & execute a highly concurrent Java application that uses fibers to internally send http…

Sheinbergon
- 2,875
- 1
- 15
- 26
7
votes
1 answer
How to use Quasar with Scala under sbt?
I wish to use Quasar in my SBT project. Since Scala is not yet supported the only viable option left is to have SBT compile some java classes that use of Quasar.
I tried putting
javaOptions += "-javaagent:PATH_TO_JAR/quasar-core-0.5.0.jar"
and…

mjaskowski
- 1,479
- 1
- 12
- 16
6
votes
3 answers
Auth with SMS Firebase: Error (auth/argument-error)
I´m trying use the firebase auth with Phone number on Vuejs (Quasar) Applycation.
Following the documentation, first step is get the captcha. I believe thaths is where I cant do correctly:
For testing i´m using one single file:
Div on html…

Elton Souza
- 153
- 2
- 10
6
votes
2 answers
Understanding what does Axios create do
I was asked to make API call to send data.
On Click in vue, I was firing this event
async facebookDataToSend () {
let campaignID = await this.$store.getters['CurrentInstance/id']
this.$axios.post(process.env.API_BASE_URL + 'faceeBookCampaign',…

Alwaysblue
- 9,948
- 38
- 121
- 210
6
votes
1 answer
Does a blocking IO in Quasar's fiber block a thread in its threadpool?
As far as I know, in Akka, all actors are scheduled over a pool of threads. Too many actors perform blocking IO simultaneously, each blocking call blocks one thread, results in a thread outage.
Now I'm looking at an interesting fiber implementation…

cfchou
- 1,239
- 1
- 11
- 25
5
votes
2 answers
is it possible to use nuxt3 with quasar framework
I'm very new to nuxt3 and want to know if i't possible to use it with quasar. specially that quasar has his own ssr system .
does anyone successfully created a project with these two frameworks ?
i tried to look if there is any open source projects…

CSharp-n
- 291
- 2
- 15
5
votes
1 answer
QUploader component in Julia
I have been developing an application in Julia using Genie Framework and Stipple, and the main task of this app is to implement Sobel and Prewitt operator. The problem that I am struggling with is the uploader component. So basically I am able to…

VladH
- 143
- 7
5
votes
2 answers
Deploy Quasar SSR vue/node app to Firebase Hosting
I've tried many approches to upload and run the node/vue project on the firebase hosting, but didn't succeed.
I've followed official guidelines on Firecast youtube channel, but it seems that I'm missing something.
My vue.js app in SSR mode works…

aspirinemaga
- 3,753
- 10
- 52
- 95
5
votes
1 answer
Vue.js - multiple condition class binding
What is the proper way to bind class to a tag based on multiple conditions?
Given this tag, it seems that when trying to write multiple conditions one is being overwritten by another.

Alex T
- 3,529
- 12
- 56
- 105
5
votes
2 answers
How integrate Quasar framework and Vuetify?
How to install vuetify in a project generated with quasar cli?
In a normal project with vue cli only need the command
vue add vuetify
but in quasar cli I run the command
npm install vuetify
and generate new boot file, but i have an error in sass…

Abner Corona
- 51
- 1
- 2
5
votes
3 answers
Using store in component with Quasar
I'm trying to implement Vuex store in a Quasar project. I created a new project using the quasar-cli and checked the Vuex box. I then followed the guide on the quasar website (https://quasar.dev/quasar-cli/cli-documentation/vuex-store)
and created…

fogx
- 1,749
- 2
- 16
- 38
5
votes
1 answer
Vue prototype Axios
I am new to vue and Quasar.
Now, I got how Vue works vaguely,
I was trying to comprehend the boilerplate code which we get when we init Quasar
While initiating, I asked it to integrate axios and veux from cli
Now I was trying to comprehend the…

Alwaysblue
- 9,948
- 38
- 121
- 210
5
votes
2 answers
Is there a way to pass environment variables to the quasar from console?
I develop a quasar application and I use 'dotenv' plug-in to parse .env file.
Sometimes I need to make provisional changes in variables such as use a different address of back-end for only current run and I don't want to change .env file.
If there…

za-ek
- 467
- 5
- 11