You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When importing QUpload directly from quasar.mat.esm; vue throws an error as QList isnt being imported directly in the file.
[Vue warn]: Unknown custom element: <q-list> - did you register the component correctly? For recursive components, make sure to provide the "name" option.
Looks to have been introduced in this commit: 91b7d0b
For now I've fixed the issue by adding QList as a global component in vue using this: Vue.use(Quasar, { plugins: [Dialog, Notify], directives: [CloseOverlay], components: [QList] });
The text was updated successfully, but these errors were encountered:
When importing QUpload directly from
quasar.mat.esm
; vue throws an error as QList isnt being imported directly in the file.[Vue warn]: Unknown custom element: <q-list> - did you register the component correctly? For recursive components, make sure to provide the "name" option.
Looks to have been introduced in this commit: 91b7d0b
For now I've fixed the issue by adding QList as a global component in vue using this:
Vue.use(Quasar, { plugins: [Dialog, Notify], directives: [CloseOverlay], components: [QList] });
The text was updated successfully, but these errors were encountered: