@dobbel thanks a lot, that works like charm
anli
@anli
Best posts made by anli
Latest posts made by anli
-
RE: QCalendar: hide times in day view if outside work hours
-
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!
-
Use vue-i18n-loader to build Single file components
According to https://kazupon.github.io/vue-i18n/en/sfc.html#basic-usage I want to build single file components inside my quasar app. Therefore I need to use vue-i18n-loader. There is an example webpack configuration at https://kazupon.github.io/vue-i18n/en/sfc.html#basic-usage but I didn’t figure out, how to use it with the quasar app I’ve created via quasar-cli. Can someone please help me and point me to the right direction? Thanks a lot for your help in advance!