Vue二级路由配置

  • 二级路由配置path时前面不能有 ' / '
  • 在一级路径信息数组中添加一个children配置项:
       {path:'/hot',component:Hot,
             children:[
              {path:'/',redirect:'film'},                  //配置默认显示模板内容
              {path:'film',component:{template:'

妖猫传

'}}, {path:'tv',component:{template:'

河神

'}}, {path:'music',component:{template:'

缘分一道桥

'}} ] }
  • 在一级路由的模板中添加,to中的地址需要 加上一级路由
  • 供二级路由对应模板显示的也不能忘!

你可能感兴趣的:(Vue二级路由配置)