Files
mes-ui-d2/src/menu/index.js

43 lines
896 B
JavaScript
Raw Normal View History

import { uniqueId } from 'lodash'
// 插件
import demoPlugins from './modules/demo-plugins'
// 组件
import demoComponents from './modules/demo-components'
2020-08-31 22:29:25 +08:00
// 功能
import demoPlayground from './modules/demo-playground'
/**
* @description 给菜单数据补充上 path 字段
* @description https://github.com/d2-projects/d2-admin/issues/209
* @param {Array} menu 原始的菜单数据
*/
function supplementPath (menu) {
return menu.map(e => ({
...e,
path: e.path || uniqueId('d2-menu-empty-'),
...e.children ? {
children: supplementPath(e.children)
} : {}
}))
}
// 菜单 侧边栏
export const menuAside = supplementPath([
demoComponents,
demoPlugins,
demoPlayground
])
// 菜单 顶栏
export const menuHeader = supplementPath([
{
path: '/index',
title: '首页',
icon: 'home'
},
demoPlayground,
2020-08-31 22:29:25 +08:00
demoComponents,
demoPlugins
])