路由嵌套
程序员文章站
2022-03-03 20:13:19
...
在router.js中增加子路由拦截
{
path:"/inventory",
name:"inventoryPage",
component:()=>import('./views/inventoryPage'),
// 路由嵌套
children:[
{
path:"/",
redirect:"/inventory/one"
},
{
//动态匹配路由
path:"/inventory/:state",
name:"one",
component:()=>import('./components/TabCom.vue'),
},
]
}
监听路由的改变
watch:{
'$route'(){
//获取当前路由,即页面地址中#后的字符串
Vue对象.$route.params.state
}
}
上一篇: Mysql的like是否使用索引?
下一篇: Linux:如何让内网的服务器能上网
推荐阅读