[Vuejs]-Vuetify installation problem (These dependencies were not found: * Vuetify in ./src/main.js)

1👍

OK I found it,

I changed it the following line in main.js

import Vuetify from 'Vuetify';

to

import Vuetify from 'vuetify';

0👍

first install vuetify

 npm install vuetify --save

Then import vuetify at ./src/main.js file

 import Vuetify from 'vuetify/lib'

 Vue.use(Vuetify)

Then install vue-events

   npm install vue-events

and import it like this

 import VueEvents from 'vue-events'
Vue.use(VueEvents)

Leave a comment