Files
mes-ui-d2/src/menu/index.js
liyang 2e8acdfe66 调整菜单名称
Former-commit-id: 5d8dc4b322a99bcc064f203ba8744b59f0cba78b [formerly 5d8dc4b322a99bcc064f203ba8744b59f0cba78b [formerly 5d8dc4b322a99bcc064f203ba8744b59f0cba78b [formerly 5d8dc4b322a99bcc064f203ba8744b59f0cba78b [formerly 7fa74709d04a6653608bc570aeafce6f6d67ace6 [formerly 992165f41ead447e33dc4243846aec0d1eeb601d]]]]]
Former-commit-id: c2ad27bddbf106d63aa07c8f8f1412714eb9b26a
Former-commit-id: ff7713b49ade05a33d4f8ebe2f214f59ad0b2312
Former-commit-id: 2b849cd7f40f63f0a5032c6d86bba14bf9ae5fa4 [formerly dd33a3f2d5a23bae49fa67cef9afdf3b09213862]
Former-commit-id: ea8a4cc602f3c5fd567f5f029163c5f5090eefea
Former-commit-id: 8fdd4c1f5ee83c64fb85c3bc9aad628ef20f96c8
Former-commit-id: bab8938bb32647a6ddeec6c63e6294eb21a35f62
Former-commit-id: d30917b708c01bd818f82adfabadb1c3a3fa27e0
Former-commit-id: b883593d479b9f3de338765a8d86516f1b6f3270
2018-08-30 08:53:57 +08:00

64 lines
1.7 KiB
JavaScript

// 插件
import demoPlugins from './modules/demo-plugins'
// 组件
import demoComponents from './modules/demo-components'
// 组件
import demoCharts from './modules/demo-charts'
// 组件库
import demoElement from './modules/demo-element'
// 试验台
import demoPlayground from './modules/demo-playground'
// 示例
import demoBusiness from './modules/demo-business'
// CRUD
import demoD2Crud from './modules/demo-d2-crud'
// 第三方网页
import demoFrame from './modules/demo-frame'
// 菜单 侧边栏
export const menuAside = [
demoComponents,
demoPlugins,
demoCharts,
demoElement,
demoPlayground,
demoBusiness,
demoD2Crud,
demoFrame
]
// 菜单 顶栏
export const menuHeader = [
{
path: '/index',
title: '首页',
icon: 'home'
},
{
title: '功能',
icon: 'puzzle-piece',
children: [
demoD2Crud,
demoComponents,
demoElement,
demoCharts,
demoPlugins,
demoFrame,
{
title: '新窗口打开链接',
icon: 'link',
children: [
{ path: 'https://github.com/d2-projects/d2-admin', title: 'D2Admin Github', icon: 'github' },
{ path: 'https://juejin.im/user/57a48b632e958a006691b946/posts', title: '掘金', icon: 'globe' },
{ path: 'https://my.oschina.net/u/3871516', title: '开源中国', icon: 'globe' },
{ path: 'https://www.zhihu.com/people/fairy-ever/activities', title: '知乎', icon: 'globe' },
{ path: 'https://segmentfault.com/blog/liyang-note-book', title: 'segmentfault 专栏', icon: 'globe' },
{ path: 'http://www.fairyever.com/', title: 'www.fairyever.com', icon: 'globe' }
]
}
]
},
demoPlayground,
demoBusiness
]