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.
- [Vuejs]-Cannot access vue.js frontend when running npm build (frontend-maven-plugin and spring-boot backend)
- [Vuejs]-VueJS app as subdomain throws 404 when a path is added
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
Source:stackexchange.com