Former-commit-id: 98a459c4e885b792c11f1e73d63df90292c68c3d [formerly 98a459c4e885b792c11f1e73d63df90292c68c3d [formerly 98a459c4e885b792c11f1e73d63df90292c68c3d [formerly 98a459c4e885b792c11f1e73d63df90292c68c3d [formerly 51eaa80fa9bb33bd4dc1b6a5851b6351f6d4a9a9 [formerly 9a7efd3db60366cd8ead383ce061a887f029509d]]]]]
Former-commit-id: 73488faeba91a46d73471befd2074a3acf69ebc6
Former-commit-id: e62ae6f90d974ba2337aeaa342fbfc1a146aa818
Former-commit-id: 1b1b788db4d0b5a05328a443164cb99290f0ae20 [formerly 40395c0d06f0c418a905b16a563ce0b15bfa2a22]
Former-commit-id: b51cb0e9c85def26253424d00fcbcd225a5e3d37
Former-commit-id: 467bd66bc6685dff6b057ed5d8191b17243efbb3
Former-commit-id: 514185199078e3e623f4e135408c6935ec45e494
Former-commit-id: 7f5767bfe8efb54511fd22d2be2e787e6a248e54
Former-commit-id: 59011c70629efa7ca0163b76af17e9f217783221
This commit is contained in:
liyang
2018-07-17 22:03:45 +08:00
parent 14c921e6b1
commit 6c7651dbc2
7 changed files with 453 additions and 1 deletions

View File

@@ -0,0 +1,30 @@
export default {
path: '/demo/playground',
title: '试验台',
icon: 'flask',
children: (pre => [
{ path: `${pre}index`, title: '试验台首页', icon: 'home' },
{
path: `${pre}page-cache`,
title: '页面缓存',
icon: 'hdd-o',
children: [
{ path: `${pre}page-cache/on`, title: '开启缓存' },
{ path: `${pre}page-cache/off`, title: '关闭缓存' }
]
},
{
path: `${pre}page-argu`,
title: '参数传递和留存',
icon: 'assistive-listening-systems',
children: [
{ path: `${pre}page-argu/send`, title: '发送' },
{ path: `${pre}page-argu/get/username-from-menu?userid=userid-from-menu`, title: '接收' }
]
},
{ path: `${pre}theme`, title: '主题', icon: 'flask' },
{ path: `${pre}fullscreen`, title: '全屏', icon: 'arrows-alt' },
{ path: `${pre}gray`, title: '灰度模式', icon: 'eye' },
{ path: `${pre}db`, title: '数据持久化', icon: 'database' }
])('/demo/playground/')
}