Regular NPM install
-
I’m trying to create a schema-based component and I want to test it with Quasar components (the component is for a Quasar-based project).
For this reason I want to include Quasar UI as a dev dependency but I couldn’t find any docs on how to use it like a regular package.I’m using
vue-test-utils
and so far all custom components that are required by the schema have to be registered within alocalVue
instance. So, I also need to do something likeQusar.attachTo(localVue)
Any ideas?