- 按照多级的方式定义route
- 使用hideInMenu隐藏子级菜单
- 子级的路由覆盖父级路由
meta: {
title: '菜单标题',
},
name: '组件名',
path: '/test',
children: [
{
name: '_组件名',
path: '/test',
// 加上'/'可以直接覆盖父组件路由,否则是'/test/test'
component: () => import('组件文件路径'),
meta: {
title: '菜单标题',
hideInMenu: true // 不在菜单中显示
},
}
],