[Vuejs]-Laravel and Vuetify Unknown custom element

0👍

Almost there… Pass your vuetify instance into your vue options.
See bootstrapping here: https://vuetifyjs.com/en/getting-started/quick-start#bootstrapping-the-vuetify-object


const app = new Vue({
    el: '#app',
    router,
    vuetify
});

Leave a comment