Vue-Router4.0 报“Cannot read property ‘forEach‘ of undefined”

注意:这个名字一定要叫routes不能为其他名称,否则报错

// 这个名字一定要叫routes不能为其他名称,否则报错
const routes = [
    {
        path: "/",
        name: 'home',
        component: Home,
    }
]

// 2.初始化创建VueRouter实例
const router = createRouter({
    history: createWebHistory(),
    routes
})

你可能感兴趣的:(Vue-Router4.0 报“Cannot read property ‘forEach‘ of undefined”)