Multiple app in one root app
-
Hi guys
I have three dashboards and all of them has almost the same theme and config the matter is that I want a root folder to share all components between them (code sharing and component sharing). In Vue-CLI it’s so easy to do that something like this:
rootApp
-src
–share folder (vue component, …)
–app1
— any folder (src, assets, …)
— store.js
— router.js
— main.js
— package.json–app2
— any folder (src, assets, …)
— store.js
— router.js
— main.js
— package.json- …
…
And all of the main.js files will be build separately very nice.
Is there any way to do that with Quasar-cli?
see the example - …
-
Quasar cli uses quasar.conf.js, perhaps u should look into using quasar as a plugin in your vue app, it should be in the docs.https://quasar.dev/start/vue-cli-plugin#Introduction