You memorized the entire Quasar doc

Posts made by dobbel
-
RE: Using Google API for Sheets
The third option is again to set up a nodejs / PHP process and let it handle that instead of trying to do it clientside.
Probably the ‘best’ way to do it.
-
RE: Using Google API for Sheets
If so, is it okay for me to install the Google API NodeJS client and use it in my Quasar app?
NodeJS runs on a server. Quasar runs on a clients browser( most of the time). So those 2 things don’t match.
-
RE: nested components and v-model
You could also
extend
a Quasar component for potential less hassle.https://vuejs.org/v2/api/#extends
https://littlelines.com/blog/2020/03/13/extending-vue-components
https://stackoverflow.com/questions/35964116/how-do-i-extend-another-vuejs-component-in-a-single-file-component-es6-vue-loa -
RE: How to configure socket.io client for backend access
You have to set the server listening IP to it’s IP address instead of 0.0.0.0:3002 . The client (Quasar that runs on someone’s browser, not server) has to connect to the nodejs server’s IP address and not localhost.
-
RE: How to adjust notify plugin enter and exit speed animation
Maybe this will help to see what is going on:
https://developers.google.com/web/tools/chrome-devtools/inspect-styles/animations -
RE: [Solved] Trigger autocomplete without submitting a form
You could see if there’s a github issue about this. If not you could create a new feature request with your research.
-
RE: App Started Crashing
- Did you try to restart your computer?
- Disable windows swap file (that will remove the D:\pagefile.sys)
See this thread with the same issue:
https://stackoverflow.com/questions/61936085/error-from-chokidar-c-error-ebusy-resource-busy-or-locked-lstat-c-dump -
RE: separator between toggle buttons
separator between the button in a toggle?
no you cannot. What you could do is put a seperator icon in this example:
https://quasar.dev/vue-components/button-toggle#Example--Custom-buttons-content
Or some css:
style=" border-right: 6px solid green; height: 100%">
-
RE: Vuex Persisten State duplicate key
Maybe quasar’s cookie plugin allows duplicate keys? What if you first check if the cookie key exists before doing cookies.set?
See here:
https://quasar.dev/quasar-plugins/cookies#Verify-if-Cookie-is-Set -
RE: [Solved] Trigger autocomplete without submitting a form
OK , good info, using an iframe sounds a bit hacky though…
-
RE: Form Submit with PayPal Payment Button
start here:
https://developer.paypal.com/docs/business/checkout/configure-payments/single-page-app/#vue
https://github.com/paypal/paypal-checkout-componentsbtw sending emails cannot be done by Quasar.
-
RE: [Solved] Trigger autocomplete without submitting a form
Here’s some info about autocomplete:
https://quasar.dev/vue-components/input#Basic-features
https://quasar.dev/vue-components/form#Turning-off-Autocompletion
https://quasar.dev/vue-components/select#Native-attributes-with-use-input -
RE: API Call does not work in ios Mobile App version
Great you solved the issue.
This way we eliminated the need for wkwebview
If you don’t have wkwebview than you’ll use UIWebView(default). Apple will (automatically) reject any webview based app uploaded to the iTunes store with code(used or not) that contains UIWebView.
-
RE: Where To Enter Capacitor Permissions For Android
AndroidManifest.xml
That seems the place to do the permissions in Capacitor see:
https://capacitorjs.com/docs/android/configuration -
RE: How to use select option-label function?
Please create a codepen.io to get better support.
-
RE: Not mutating prop, still get an error
@szabiaura said in Not mutating prop, still get an error:
But this doesn’t seem to define withAdd as a prop in a ts-class component.
I found this:
@Prop({default: '100vw'}) readonly width!: string
From here:
https://github.com/kaorun343/vue-property-decorator/issues/179 -
RE: Where To Enter Capacitor Permissions For Android
I am more of a Cordova guy here.
In Quasar you can set some settings like package name, back button behavior. For the most part you’ll have do the specific config(install plugins, set permissions explanations for IOS) directly in the generated cordova/capacitor project folders. Quasar only controls the www folder of an Cordova project ( and probably Capacitor).
See here for the Capacitor specific doc:
https://quasar.dev/quasar-cli/developing-capacitor-apps/configuring-capacitor#capacitor.config.json