[Vuejs]-Vuetify – Unknown custom element problem with any component

1👍

I suspect the problem is with <v-tabs>. I’m not very familiar with vuetify. Shouldn’t this component be imported and registered (like any other component would be?).

EDIT

Oh I think you need to pass Vuetify

new Vue({
  Vuetify,
}).$mount('#app')

They have a getting started doc here:

https://vuetifyjs.com/en/getting-started/quick-start

Try to setup your project in the same way.

0👍

try to follow the quick start documentation in Vuetify.

import vuetify from '@/plugins/vuetify'

new Vue({
  vuetify,
}).$mount('#app')

your import path is ‘@/plugins/vuetify’ instead of ‘./plugins/vuetify’
and add the vuetify into your Vue({ }).$mount(‘#app’) as shown above.

Hope it help

👤markcc

Leave a comment