[Vuejs]-Vuetify style not 100% applied

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 my main.ts (as posted), a second one in the imported file plugins/vuetify.ts.
  • In the same file (plugins/vuetify.ts), I had a line import Vuertify from "vuetify" which I changed to import Vuertify from "vuetify/lib", according to this documentation.

Leave a comment