index.js 939 Bytes
Newer Older
葛齐林's avatar
葛齐林 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
// 插件
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,
co_dengxiongwen's avatar
co_dengxiongwen committed
27
  demoFrame
葛齐林's avatar
葛齐林 committed
28 29 30 31 32 33 34 35
]

// 菜单 顶栏
export const menuHeader = [
    { title: '首页', path: '/index' },
    { title: '系统管理', path: '/sys/org' }
    // { path: '/sys/setting/code', title: '代码生成', icon: 'globe' }
 ]