类似这种
const demo = [{
path: '/login',
name: 'login',
meta: {
title: 'Login - 登录',
hideInMenu: true
}
},
{
path: '/',
name: '_home',
redirect: '/home',
meta: {
hideInMenu: true,
notCache: true
},
children: [{
path: '/home',
name: 'home',
meta: {
hideInMenu: true,
title: '首页',
notCache: true,
icon: 'md-home'
}
}]
},
{
path: '/system',
name: 'system',
meta: {
icon: 'md-menu',
title: '系统管理'
},
children: [{
path: 'user',
name: 'user',
meta: {
icon: 'ios-people-outline',
title: '用户管理'
}
},
{
path: 'menus',
name: 'menus',
meta: {
icon: 'md-funnel',
title: '菜单管理'
}
},
{
path: 'character',
name: 'character',
meta: {
icon: 'md-funnel',
title: '角色管理'
}
}
]
},
{
path: '/401',
name: 'error_401',
meta: {
hideInMenu: true
}
},
{
path: '/500',
name: 'error_500',
meta: {
hideInMenu: true
}
},
{
path: '*',
name: 'error_404',
meta: {
hideInMenu: true
}
}
]
转换为这种
const demo1=[
{
title:'系统管理',
children:[
{
title:'用户管理'
},
{
title:'菜单管理'
},
{
title:'角色管理'
}
]
}
]
用for可以实现 不知道用递归怎么写
以上假设是你每层都有
meta:{title:***}
。如果没有,可以在