Maybe this helps you: https://markus.oberlehner.net/blog/refs-and-the-vue-3-composition-api/
Best posts made by anli
-
Disable transitions/animations
Hi,
how can I disable transitions or animations or make them faster? Most transitions (e. g. Dialog popup, moving placeholder q-input if getting focus) are too slow for my usecase.
Thanks a lot in advance!
André
Latest posts made by anli
-
RE: Unable to find node_modules/@capacitor/android/capacitor
For me it did a
yarn install
in the src-capacitor subfolder to fix this problem. -
Quasar 2.0.0-beta8: $q in typescript file
Hi there,
thanks a lot for the amazing work you have done for pushing quasar towards v2!
I try to use $q in a typescript file as shown in https://next.quasar.dev/options/the-q-object#outside-of-a-vue-file
import { Quasar } from 'quasar' const platform = Quasar.platform.is;
That gives the error
TS2339: Property 'platform' does not exist on type '{ install: (app: App<any>, options: Partial<QuasarPluginOptions>) => any; }'.
What am I doing wrong? Thanks a lot for your help!
Best regards, André
-
RE: QCalendar: hide times in day view if outside work hours
@dobbel thanks a lot, that works like charm
-
RE: Import GraphQL boot file to use in store action
Do you really need vuex? vue-apollo comes with a caching system and using vuex is not needed and may be overhead. If you use chrome browser you can add the apollo extension to watch the cache. You can read https://apollo.vuejs.org/guide/local-state.html to find out more (att: v3 documentation, maybe you’re using one of the three v4 apis (Option API, Composition API, Component API) - setup is nearly the same (https://v4.apollo.vuejs.org/))
-
QCalendar: hide times in day view if outside work hours
Hello everyone,
I’m using the great QCalendar component to display a calendar. In the day view I want to hide (or make smaller) the hours which are outside work hours. How can I achieve this? I tried several things but none led to the goal.
Thanks in advance for your ideas!Best, André
-
Disable transitions/animations
Hi,
how can I disable transitions or animations or make them faster? Most transitions (e. g. Dialog popup, moving placeholder q-input if getting focus) are too slow for my usecase.
Thanks a lot in advance!
André -
RE: After update to 1.9.10 I get error "export is not defined"
If anyone has the same issue: Follow the steps here: https://github.com/feathersjs-ecosystem/feathers-vuex/pull/216#issuecomment-508957690 - this solves this problem.
-
After update to 1.9.10 I get error "export is not defined"
Hi,
I use feathers-vuex 3.9.0 together with quasar. After the update to quasar 1.9.10 I receive this error in browser console:Uncaught ReferenceError: exports is not defined at eval (webpack-internal:///./node_modules/feathers-vuex/node_modules/@feathersjs/commons/lib/hooks.js:28) at Module../node_modules/feathers-vuex/node_modules/@feathersjs/commons/lib/hooks.js (vendor.js:5403) at __webpack_require__ (app.js:790) at fn (app.js:151) at eval (webpack-internal:///./node_modules/feathers-vuex/node_modules/@feathersjs/commons/lib/index.js:23) at Object../node_modules/feathers-vuex/node_modules/@feathersjs/commons/lib/index.js (vendor.js:5415) at __webpack_require__ (app.js:790) at fn (app.js:151) at eval (webpack-internal:///./node_modules/feathers-vuex/dist/service-module/service-module.getters.js:21) at Module../node_modules/feathers-vuex/dist/service-module/service-module.getters.js (vendor.js:5319)
I’ve defined
build: { transpileDependencies: ['feathers-vuex'] },
in quasar.conf.js, but is this considered?
Thanks in advance for your help! -
RE: Use vue-i18n-loader to build Single file components
Great! Thanks a lot for the link!