Getting "Failed to resolve component.." when using Quasar without cli or umd #17505
-
Hi guys, I am trying to upgrade from v1 to v2 (v2.16.9). Not sure why but all the .vue files where i have quasar components are throwing error in browser
Seems all the components are not automatically registered globally anymore. My application run on meteor framework and it has its own build process so i cannot use any cli or webpack or vite here. In my application am doing
Am i missing anything or its a bug? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You need to explicitly import the components/directives/plugins/etc that you are using. Either globally ( |
Beta Was this translation helpful? Give feedback.
You need to explicitly import the components/directives/plugins/etc that you are using. Either globally (
app.use(Quasar, { ... }
) or in every vue file.