2018-07-17 22:03:45 +08:00
|
|
|
export default {
|
|
|
|
|
path: '/demo/components',
|
2020-08-31 22:29:25 +08:00
|
|
|
title: '组件',
|
2018-07-17 22:03:45 +08:00
|
|
|
icon: 'puzzle-piece',
|
2020-11-03 13:15:16 +08:00
|
|
|
children: [
|
|
|
|
|
{ path: '/demo/components/index', title: '扩展组件', icon: 'home' },
|
2018-07-17 22:03:45 +08:00
|
|
|
{
|
2020-11-03 13:15:16 +08:00
|
|
|
path: '/demo/components/container',
|
2018-07-17 22:03:45 +08:00
|
|
|
title: '布局容器',
|
|
|
|
|
icon: 'window-restore',
|
|
|
|
|
children: [
|
2018-11-15 17:00:12 +08:00
|
|
|
{
|
|
|
|
|
title: '填充型',
|
|
|
|
|
children: [
|
2020-11-03 13:15:16 +08:00
|
|
|
{ path: '/demo/components/container/full', title: '基础', icon: '' },
|
|
|
|
|
{ path: '/demo/components/container/full-slot', title: '插槽', icon: '' },
|
|
|
|
|
{ path: '/demo/components/container/full-bs', title: '滚动优化', icon: '' }
|
2018-11-15 17:00:12 +08:00
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '隐形模式',
|
|
|
|
|
children: [
|
2020-11-03 13:15:16 +08:00
|
|
|
{ path: '/demo/components/container/ghost', title: '基础', icon: '' },
|
|
|
|
|
{ path: '/demo/components/container/ghost-slot', title: '插槽', icon: '' },
|
|
|
|
|
{ path: '/demo/components/container/ghost-bs', title: '滚动优化', icon: '' }
|
2018-11-15 17:00:12 +08:00
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '卡片型',
|
|
|
|
|
children: [
|
2020-11-03 13:15:16 +08:00
|
|
|
{ path: '/demo/components/container/card', title: '基础', icon: '' },
|
|
|
|
|
{ path: '/demo/components/container/card-slot', title: '插槽', icon: '' },
|
|
|
|
|
{ path: '/demo/components/container/card-bs', title: '滚动优化', icon: '' }
|
2018-11-15 17:00:12 +08:00
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '方法',
|
|
|
|
|
children: [
|
2020-11-03 13:15:16 +08:00
|
|
|
{ path: '/demo/components/container/api?bs=false', title: '滚动控制', icon: '' },
|
|
|
|
|
{ path: '/demo/components/container/api?bs=true', title: '滚动控制 BS', icon: '' }
|
2018-11-15 17:00:12 +08:00
|
|
|
]
|
|
|
|
|
}
|
2018-07-17 22:03:45 +08:00
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
{
|
2020-11-03 13:15:16 +08:00
|
|
|
path: '/demo/components/layout/grid',
|
2018-07-17 22:03:45 +08:00
|
|
|
title: '高级布局',
|
|
|
|
|
icon: 'tasks',
|
|
|
|
|
children: [
|
2020-11-03 13:15:16 +08:00
|
|
|
{ path: '/demo/components/layout/grid', title: '拖拽位置和大小' },
|
|
|
|
|
{ path: '/demo/components/layout/splitpane', title: '区域划分' }
|
2018-07-17 22:03:45 +08:00
|
|
|
]
|
|
|
|
|
},
|
2018-11-17 18:07:48 +08:00
|
|
|
{
|
2020-11-03 13:15:16 +08:00
|
|
|
path: '/demo/components/editor',
|
2018-11-17 18:07:48 +08:00
|
|
|
title: '编辑器',
|
|
|
|
|
icon: 'pencil-square-o',
|
|
|
|
|
children: [
|
2020-11-03 13:15:16 +08:00
|
|
|
{ path: '/demo/components/editor-ueditor', title: 'UEditor', icon: '' },
|
2022-08-23 21:55:00 +08:00
|
|
|
{ path: '/demo/components/editor-quill', title: 'Quill', icon: '' }
|
2018-11-17 18:07:48 +08:00
|
|
|
]
|
|
|
|
|
},
|
2018-07-17 22:03:45 +08:00
|
|
|
{
|
2020-11-03 13:15:16 +08:00
|
|
|
path: '/demo/components/icon',
|
2018-07-17 22:03:45 +08:00
|
|
|
title: '图标',
|
|
|
|
|
icon: 'star',
|
|
|
|
|
children: [
|
2020-11-03 13:15:16 +08:00
|
|
|
{ path: '/demo/components/icon/icon', title: '图标组件' },
|
|
|
|
|
{ path: '/demo/components/icon/icon-svg', title: 'svg 图标组件' },
|
|
|
|
|
{ path: '/demo/components/icon/select', title: '图标选择器' },
|
|
|
|
|
{ path: '/demo/components/icon/select-svg', title: 'svg 图标选择器' },
|
|
|
|
|
{ path: '/demo/components/icon/list', title: 'FontAwesome' }
|
2018-07-17 22:03:45 +08:00
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
{
|
2020-11-03 13:15:16 +08:00
|
|
|
path: '/demo/components/markdown',
|
2018-07-17 22:03:45 +08:00
|
|
|
title: 'markdown 解析',
|
|
|
|
|
icon: 'file-text-o',
|
|
|
|
|
children: [
|
2020-11-03 13:15:16 +08:00
|
|
|
{ path: '/demo/components/markdown/source', title: '指定资源' },
|
|
|
|
|
{ path: '/demo/components/markdown/url', title: '异步加载文件' }
|
2018-07-17 22:03:45 +08:00
|
|
|
]
|
|
|
|
|
},
|
2020-11-03 13:15:16 +08:00
|
|
|
{ path: '/demo/components/countup', title: '数字动画', icon: 'motorcycle' },
|
|
|
|
|
{ path: '/demo/components/highlight', title: '代码高亮显示', icon: 'code' },
|
|
|
|
|
{ path: '/demo/components/json-tree', title: 'JSON 展示', icon: 'sitemap' }
|
|
|
|
|
]
|
2018-07-17 22:03:45 +08:00
|
|
|
}
|