no message

Former-commit-id: 8745a0fcbeb80364749cc2a54be10ec3d51fd3b0
Former-commit-id: f9adcd1b9f128169738c91f07bff50cc46c436f6
Former-commit-id: 9ca6bbaef31d33563d264d18f576113f15b550b2
This commit is contained in:
李杨
2018-02-19 12:51:16 +08:00
parent 652576336b
commit 4d4c0d1566
2 changed files with 24 additions and 2 deletions

View File

@@ -0,0 +1,5 @@
<template>
<Container type="ghost" :responsive="true">
demo
</Container>
</template>

View File

@@ -11,9 +11,9 @@ export const menu = {
name: 'demo-chart-index'
},
children: [
// 数据处理
// 所有
{
title: '图表演示1',
title: '所有',
icon: 'file-o',
path: 'index',
name: 'demo-chart-index',
@@ -21,6 +21,23 @@ export const menu = {
requiresAuth: true
},
component: resolve => { require(['@/pages/demo/chart/index/index.vue'], resolve) }
},
// 单独演示
{
title: '单独演示',
icon: 'file-o',
children: [
{
title: '面积图',
icon: 'file-o',
path: 'demo/areaBase',
name: 'demo-chart-demo-areaBase',
meta: {
requiresAuth: true
},
component: resolve => { require(['@/pages/demo/chart/demo/areaBase.vue'], resolve) }
}
]
}
]
}