0๐
โ
I solved the problem by cleaning up my code, not sure which change exactly made the difference:
- I had a duplicate call of
Vue.use(Vuetify)
, one in mymain.ts
(as posted), a second one in the imported fileplugins/vuetify.ts
. - In the same file (
plugins/vuetify.ts
), I had a lineimport Vuertify from "vuetify"
which I changed toimport Vuertify from "vuetify/lib"
, according to this documentation.
Source:stackexchange.com