You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{path: '/about',name: 'About',// route level code-splitting// this generates a separate chunk (about.[hash].js) for this route// which is lazy-loaded when the route is visited.component: ()=>import(/* webpackChunkName: "about" */'../views/About.vue')}
can work if modify following.
{path: '/about',name: 'About',component: About}
The text was updated successfully, but these errors were encountered:
Vue Router
https://v3.router.vuejs.org/guide/advanced/lazy-loading.html#lazy-loading-routes
following code doesn't work.
can work if modify following.
The text was updated successfully, but these errors were encountered: