:如上图
先写路由
如:随便模拟一条二级路由
export default new Router({
routes: [
{
path: '/',
name: 'HelloWorld',
component:main,
children:[
{
path: '/',
name: 'HelloWorld',
component:y1,
meta:{
title:'用户列表'
}
},
{
path: '/main/y2',
name: 'HelloWorld',
component:y2,
meta:{
title:'列表信息'
}
},
{
path: '/main/y3',
name: 'HelloWorld',
component:y3,
meta:{
title:'信息管理'
}
},
{
path: '/main/y4',
name: 'HelloWorld',
component:y4,
meta:{
title:'修改信息'
}
}]
}
]
})
以上代码为路由代码,主要部分为: