Thank you dobbel. I just seen how to use it on my scenario
Latest posts made by Cosby
-
RE: How to use QDialog from javascript file
-
How to use QDialog from javascript file
Hello all
I would kindly ask you if there is any possibility to use QDialog from javascript file (instead of vue file). I would like to have a component that, triggered by something, will show a QDialog with two fields (username and password in short) and ask the operator to fill it.I would need to have it in a javascript component because I’m working on a microfrontend eco system and I dont want to copy the same code for manage the QDialog all around the code.
can you kindly help me?
-
node_modules path folder
Hello all,
I made a yarn install --module-folder C:\temp\folder this is for using a shared node_modules folder among my microservices. now if I try to run quasar dev from the frontend folder I gor error :Error Unknown command “dev”". How can I use a node_modules folder in a different path? -
RE: $emit on app extension
Any hints about how to user $emit in boot function defintion?
-
$emit on app extension
Hello all
could you kindly help me with $emit method on app extension? I would raise an event from app extension catching it on parent application. In my app-extension (not UI) I have my boot file with a piece of code like this one:export default ({ app, router, store, Vue }) => { Vue.prototype.$test = function () { //here I want to raise my emit event } }
I tried using: this.$emit, Vue.$emit, this.$root.$emit, app.$emit but without any result (usually I got un emit is not a function error)
Can you help me please?
-
RE: Problem booting app Extension (api.compatibleWith is not a function)
Hello i have a very similar issue. We’re you able to fix this?
-
RE: How to build app extension UI
Unfortunally it looks like it’s not working. Using index.commons.js created with npm run-script build i have the following: vue.createVNode is not a function
-
RE: How to build app extension UI
I found how to deal with this by using >npm run-script build
-
How to build app extension UI
Hello all
I’m struggling with app extension UI. I was finally able to build my own UI library and related app extension (pushing them on owr internal npm server). When npm install the quasar-ui dependence it install exactly the source folder structure (i.e. src\components\MyComponent.vue). Is there any way to “compile” the quasar-ui?Thank you for the support