首页  >  问答  >  正文

javascript - vue子路由匹配渲染到顶级视图层问题

const routes = [
    { path: '/',component: strategyIndex,
        children: [
            { path: 'strategy/:id', component: strategyList },
            { path:'/details/:catid',component: strategyDetails}
        ]
    },
    {
        path:'*',
        redirect:'/'
    }
]

我想将/details/:catid匹配到的路由文章详情页的组件渲染在router-view顶级层,但是由于是子路由,只能渲染在第二层router-view里面,有什么办法可以解决?

世界只因有你世界只因有你2735 天前455

全部回复(1)我来回复

  • PHP中文网

    PHP中文网2017-05-16 13:45:03

    那你把它抽取出来放到第一层路由不就好了

    回复
    0
  • 取消回复