2018-07-17 22:03:45 +08:00
|
|
|
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: '接收' }
|
|
|
|
|
]
|
|
|
|
|
},
|
2018-07-23 13:58:12 +08:00
|
|
|
{
|
|
|
|
|
path: `${pre}store`,
|
|
|
|
|
title: '全局状态管理',
|
|
|
|
|
icon: 'bolt',
|
|
|
|
|
children: [
|
2018-07-23 20:16:56 +08:00
|
|
|
{ path: `${pre}store/sys`, title: '系统状态', icon: 'microchip' },
|
2018-07-23 23:05:14 +08:00
|
|
|
{ path: `${pre}store/menu`, title: '菜单控制', icon: 'bars' },
|
2018-07-23 20:16:56 +08:00
|
|
|
{ path: `${pre}store/ua`, title: '浏览器信息', icon: 'info-circle' },
|
2018-07-23 22:06:08 +08:00
|
|
|
{ path: `${pre}store/gray`, title: '灰度模式', icon: 'eye' },
|
|
|
|
|
{ path: `${pre}store/fullscreen`, title: '全屏', icon: 'arrows-alt' },
|
|
|
|
|
{ path: `${pre}store/theme`, title: '主题', icon: 'diamond' }
|
2018-07-23 13:58:12 +08:00
|
|
|
]
|
|
|
|
|
},
|
2018-07-24 15:26:39 +08:00
|
|
|
{
|
|
|
|
|
path: `${pre}db`,
|
|
|
|
|
title: '数据持久化',
|
|
|
|
|
icon: 'database',
|
|
|
|
|
children: [
|
2018-07-24 23:39:56 +08:00
|
|
|
{ path: `${pre}db/all`, title: '全部数据', icon: 'table' },
|
|
|
|
|
{ path: `${pre}db/user`, title: '用户数据', icon: 'user' },
|
|
|
|
|
{ path: `${pre}db/public`, title: '公用数据', icon: 'users' }
|
2018-07-24 15:26:39 +08:00
|
|
|
]
|
|
|
|
|
},
|
2018-08-02 14:08:36 +08:00
|
|
|
{
|
|
|
|
|
path: `${pre}log`,
|
|
|
|
|
title: '日志',
|
|
|
|
|
icon: 'bullseye',
|
|
|
|
|
children: [
|
2018-08-02 21:30:04 +08:00
|
|
|
{ path: `${pre}log/log`, title: '日志记录', icon: 'dot-circle-o' },
|
2018-08-12 09:25:10 +08:00
|
|
|
{ path: `${pre}log/error`, title: '错误捕捉', icon: 'bug' },
|
|
|
|
|
{ path: `${pre}log/console`, title: '控制台日志', icon: 'lightbulb-o' }
|
2018-08-02 14:08:36 +08:00
|
|
|
]
|
|
|
|
|
},
|
2018-07-23 20:16:56 +08:00
|
|
|
{ path: `${pre}env`, title: '环境信息', icon: 'exclamation-circle' }
|
2018-07-17 22:03:45 +08:00
|
|
|
])('/demo/playground/')
|
|
|
|
|
}
|