Skip to content Skip to sidebar Skip to footer

Vuetify Not Being Applied In Laravel

I have Vuetify installed in my Laravel project but none of the v- classes are working. There are no errors in the console though. Here is the app.js file: require('./bootstrap');

Solution 1:

When you create your Vue istance you must create a new istance of Vuetify also.

const app = newVue({
    el: '#app',
    vuetify: newVuetify()
});

I suggest you also to add this after importing Vuetify:

import 'vuetify/dist/vuetify.min.css'

Post a Comment for "Vuetify Not Being Applied In Laravel"