[Vuejs]-Vue warn : Failed to mount component: template or render function not defined

-1👍

{ path: ‘/about’, component: ()=>import(‘vr/views/About.vue’) }, ✅
{ path: ‘/about’, component: import(‘vr/views/About.vue’) },❌ // But it works

Leave a comment