原因配置路由时不能写空{}
const router = new VueRouter({
routes: [
{
name:'home',
path:'/',
component:Home,
children:[{}]//去掉这一行
}
]
})
原因配置路由时不能写空{}
const router = new VueRouter({
routes: [
{
name:'home',
path:'/',
component:Home,
children:[{}]//去掉这一行
}
]
})