vue-router动态路由动态添加子路由
routes: [
{ path: '/toOne/:id', name: 'toOneName', component: one,
children: [
{path: '/profile', component: oneNext},
{path: '/posts', component: twoNext}
]
}
]
我要在children通过动态路由的方式添加一个子路由,如何操作
{path: '/gets', component: threeNext}
this.$router.addRoutes()
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这么写就好了
routers 是生成后的路由, data 是后端返回的路由数据 tree , lazyLoading 是懒加载路由