python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Quasar object is not defined inside a vuex action function
According to this page, I can import Quasar object like this outside of a vue file:
import { Quasar } from 'quasar'
console.log(Quasar.platform.is.ios)
I have this vuex action function:
import { Qua...

s4eed
Votes: 0
Answers: 0
Quasar: build with development mode
I have in quasar.conf.js env settings with something like this:
env: {
API_URL: ctx.dev
? 'https://dev.apis.test.io/v2/'
: 'https://apis.test.io/v2/'
}
When I run app on local host dev api ...
Cup5y
Votes: 0
Answers: 2
Property 'getters' does not exist on type 'StoreCallback'
Im trying to create an store space in quasar but when I try to access to the getter, dispatch, etc. from de store it says that they don't exist.
My router/store/index.ts
export const storeKey: Injecti...
Ligia
Votes: 0
Answers: 1
Problems sending only the value of a select using typescript
I'm having a problem sending the value of a select to my database.
I'm using Vue, quasar and typescript.
I have a modal with name and age inputs, in addition I have a select that selects a category. B...
Mark
Votes: 0
Answers: 1