Former-commit-id: bacfe4e86ce0599752cc74916bb9547add6b0725 [formerly bacfe4e86ce0599752cc74916bb9547add6b0725 [formerly bacfe4e86ce0599752cc74916bb9547add6b0725 [formerly bacfe4e86ce0599752cc74916bb9547add6b0725 [formerly f5ed703f2aefb46bd7a6dd7dbb6d141cd43dec08 [formerly b679a8fecf5a7d908d20d57b1098d9c4708574c3]]]]] Former-commit-id: 36c9337dc53258282bc83ed7b52a88c617a75a66 Former-commit-id: b418eed9356e5de890b70a8ccaa93ee1abbd30bf Former-commit-id: e06310cdc83cd1c614e523f33558d2cb303ca81f [formerly 20341d1ed3372bfe16f777a177710894ca29f378] Former-commit-id: 1795ddf1c595363c49c3d6530e2a552aa7906edd Former-commit-id: 38c0384164faa36103bc9ee5d881cdacf367bbb4 Former-commit-id: 0a13e600fb5a8add5a282304dc2f26d35e711572 Former-commit-id: 5845a0b7620bd23f145b02cbe0427eb351792e6a Former-commit-id: a8aeed67fd895c549600e636cf16094197c1891a
68 lines
1.8 KiB
JavaScript
68 lines
1.8 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 demoFilters from './modules/demo-filters'
|
|
// 试验台
|
|
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,
|
|
demoFilters,
|
|
demoPlayground,
|
|
demoBusiness,
|
|
demoD2Crud,
|
|
demoFrame
|
|
]
|
|
|
|
// 菜单 顶栏
|
|
export const menuHeader = [
|
|
{
|
|
path: '/index',
|
|
title: '首页',
|
|
icon: 'home'
|
|
},
|
|
{
|
|
title: '功能',
|
|
icon: 'puzzle-piece',
|
|
children: [
|
|
demoD2Crud,
|
|
demoComponents,
|
|
demoFilters,
|
|
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
|
|
]
|