美文网首页
vue报错各种报错解决方案(待补充)

vue报错各种报错解决方案(待补充)

作者: 我性本傲 | 来源:发表于2019-08-23 23:39 被阅读0次

    1.Vue提示warn:”[vue-router] Named Route ‘home’ has a default child route…”

    在Vue的项目中使用了Vue-Router,当某个路由有子级路由时,如下写法:
    export default new Router({
    routes: [
    {
    path: '/',
    name: 'home',
    component: Home,
    children:[
    {
    path:'/',
    name: 'console',
    component: Console,
    }
    ]
    }
    ]
    })
    解决方案:
    因为当某个路由有子级路由的时候,这时候父级路由需要一个默认的路由,所以父级路由不能定义name属性,SO解决办法是:即去除父级的name属性即可。

    相关文章

      网友评论

          本文标题:vue报错各种报错解决方案(待补充)

          本文链接:https://www.haomeiwen.com/subject/cyzajctx.html