Hi, Why screen plugin at start is on XS ?!
Latest posts made by mili1374
-
How to marking CSS files as exceptions in RTL
Hi,
How to ignore a CSS file to prevent RTL rules, for example, I’m using leaflet map in RTL project when I load the CSS files quasar add RTL rules to leaflet CSS and it’s brake and not work correctly.
I read this link https://quasar.dev/options/rtl-support#Marking-CSS-rules-as-exceptions but it works on CSS property, not files.
-
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 - …