Unknown custom element: - did you register the component correctly? For recursive components

后端 未结 5 2120
不思量自难忘°
不思量自难忘° 2021-01-06 14:13

Hey I have a problem with importing vuetify into my project...

What am I doing wrong?

[Vue warn]: Unknown custom element: - did you register

5条回答
  •  再見小時候
    2021-01-06 14:30

    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.

提交回复
热议问题