Hey I have a problem with importing vuetify into my project...
What am I doing wrong?
[Vue warn]: Unknown custom element: - did you register
Step 1: Install Vuetify in your Project using "vue add vuetify" command
Step 2: In main.js write following code
import vuetify from './plugins/vuetify'; //plugins folder installed when you add vuetify
new Vue({ vuetify, render: h => h(App) }).$mount('#app');
Step 3: Restart your Project because whenever you changed in main.js file then you need to restart your Project.