vue-cli3.x initial typescript+pwd project npm run serve prompts lazy loading about.vue components to report an error, but it will not be reported if it is routinely introduced
export default new Router ({
mode: "history",
base: process.env.BASE_URL,
routes: [
{
path: "/",
name: "home",
component: Home
},
{
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")
}
]
})
ask for advice