no message

Former-commit-id: 0a49e22e5a531c2df8fa90244bedb6e0ac4297c6 [formerly 0a49e22e5a531c2df8fa90244bedb6e0ac4297c6 [formerly 0a49e22e5a531c2df8fa90244bedb6e0ac4297c6 [formerly 0a49e22e5a531c2df8fa90244bedb6e0ac4297c6 [formerly a570816c9de27ef7bc3b80c1cd5bb8bd0f2c9c13 [formerly 39ab0a504140b305df41c0d209d913079d210ef7]]]]]
Former-commit-id: 7a56aafdafea6ee6ffd2b046959b88c471eaab15
Former-commit-id: 7466b6ec8a35116a499addb8630047ca7576bacc
Former-commit-id: 98b9f572a6b21a6ee02483794ecd0dd0cf6873b3 [formerly 8bbac95c8d9e75c185affb7e7a6f1fddc7cc6ed5]
Former-commit-id: c3909adc020a418579d7b3a2034689bba0e35593
Former-commit-id: 35cf98c0c012ee69dad83556f6654ab074730d9b
Former-commit-id: ce8623ae25b423c26062e738d0df9276bee3c387
Former-commit-id: 214996c73a86f6b46d2414225b6660358f585946
Former-commit-id: fe121e22a74d82a43357212cd157c01eeda108e5
This commit is contained in:
liyang
2018-06-27 00:48:46 +08:00
parent 6e42a0aa9d
commit 16ddbb4288
14 changed files with 261 additions and 4 deletions

View File

@@ -116,11 +116,37 @@ const demoComponents = {
])('/demo/components/')
}
// 路由菜单 组件
const demoCharts = {
path: '/demo/charts',
title: '图表',
icon: 'line-chart',
children: (pre => [
{ path: `${pre}index`, title: '图表首页' },
{
path: `${pre}list`,
title: '图表',
children: [
{
path: `${pre}list/line`,
title: '折线图',
children: [
{ path: `${pre}list/line/demo1`, title: '示例' },
{ path: `${pre}list/line/demo2`, title: '横坐标的倾斜' },
{ path: `${pre}list/line/demo3`, title: '堆叠面积图' },
{ path: `${pre}list/line/demo4`, title: '显示指标数值' }
]
}
]
}
])('/demo/charts/')
}
// 路由菜单 组件库
const demoElement = {
path: '/demo/element',
title: 'Element 组件库',
icon: 'puzzle-piece',
icon: 'cubes',
children: (pre => [
{ path: `${pre}index`, title: '组件库首页' },
{
@@ -210,6 +236,7 @@ const demoElement = {
export const side = [
demoPlugins,
demoComponents,
demoCharts,
demoElement
]
@@ -225,6 +252,7 @@ export default [
children: [
demoPlugins,
demoComponents,
demoCharts,
demoElement,
{
title: '空菜单演示',