Vue-cli3.x typescript initial project error report

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

May.12,2022

vue-cli 3.3.0. You've seen several of these same problems.
look at github issue -sharp3335 . There are solutions

.
Menu