component: () => import('./views/HelloWorld')
not working
const Index = () => import('./components/Index.vue')
const Profile = () => import('./components/Profile.vue')
const routes = [
{
path: '/',
component: Index
},
{
path: '/profile',
component: Profile
}
]
Should work, gonna close this.
Most helpful comment