Vue提示warn:”[vue-router] Named Route ‘home’ has a default child route…”
问题描述:
在Vue的项目中使用了Vue-Router,当某个路由有子级路由时,如下写法:
export default new Router({
routes: [
{
path:'/system',
name:'system',
component:system,
children:[
{
path:'/',
name:'home',
component:home
}
]
}
]
})
若写法如上的话,就会报出如下的警告:
! [vue-router] Named Route 'system' has a default child route. When navigating to this named route (:to="{name: 'system'"), the default child route will not be rendered. Remove the name from this route and use the name of the default child route for named links instead.
查询翻译:
命名路由“系统”有一个默认的子路线。当导航到这个指定路由(:to="name:'system'")时,默认的子路将不会被呈现。从这条路线中删除名称,并使用名为links的默认子路由的名称。
解决方法
因为当某个路由有子级路由的时候,这时候父级路由需要一个默认的路由,所以父级路由不能定义name属性,SO解决办法是:即去除父级的name属性即可。