Former-commit-id: de3c73e90d997405748430bd9e1bfd7be741c398 [formerly de3c73e90d997405748430bd9e1bfd7be741c398 [formerly de3c73e90d997405748430bd9e1bfd7be741c398 [formerly de3c73e90d997405748430bd9e1bfd7be741c398 [formerly 65a43317c2eb9ecb43a1a9f08031c476e3b8b55c [formerly c90c9ba1e15cd4d19e7579afb866820428ce12c6]]]]] Former-commit-id: aecd29e0e5f95a2ede8d8f58eafe1e1529a58baf Former-commit-id: b7af51daa09b0c08fc592d559296164ce8b65a00 Former-commit-id: c392aa3faf901c26d6a76338195a51f21466860c [formerly 483132831864e8d14da69aa223e992ad6e9b43fb] Former-commit-id: 301d0c78028061fb53e72d36f455cb27020f3d09 Former-commit-id: b68eff94b50f328b309a249b63025c4c0ff291f7 Former-commit-id: ace41752e14fb73b30b3ff49bdf64a1dd516572a Former-commit-id: b3ac4fecd5bd71719215e299da1856c7e82e8fba Former-commit-id: e3bac2ec8ab2687f61ce9708a416eb556ea2283f
61 lines
2.1 KiB
JavaScript
61 lines
2.1 KiB
JavaScript
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}store`,
|
|
title: '全局状态管理',
|
|
icon: 'bolt',
|
|
children: [
|
|
{ path: `${pre}store/sys`, title: '系统状态', icon: 'microchip' },
|
|
{ path: `${pre}store/menu`, title: '菜单控制', icon: 'bars' },
|
|
{ path: `${pre}store/ua`, title: '浏览器信息', icon: 'info-circle' },
|
|
{ path: `${pre}store/gray`, title: '灰度模式', icon: 'eye' },
|
|
{ path: `${pre}store/fullscreen`, title: '全屏', icon: 'arrows-alt' },
|
|
{ path: `${pre}store/theme`, title: '主题', icon: 'diamond' }
|
|
]
|
|
},
|
|
{
|
|
path: `${pre}db`,
|
|
title: '数据持久化',
|
|
icon: 'database',
|
|
children: [
|
|
{ path: `${pre}db/all`, title: '全部数据', icon: 'table' },
|
|
{ path: `${pre}db/user`, title: '用户数据', icon: 'user' },
|
|
{ path: `${pre}db/public`, title: '公用数据', icon: 'users' }
|
|
]
|
|
},
|
|
{
|
|
path: `${pre}log`,
|
|
title: '日志',
|
|
icon: 'bullseye',
|
|
children: [
|
|
{ path: `${pre}log/log`, title: '日志记录', icon: 'dot-circle-o' },
|
|
{ path: `${pre}log/error`, title: '错误捕捉', icon: 'bug' },
|
|
{ path: `${pre}log/console`, title: '控制台日志', icon: 'lightbulb-o' }
|
|
]
|
|
},
|
|
{ path: `${pre}env`, title: '环境信息', icon: 'exclamation-circle' }
|
|
])('/demo/playground/')
|
|
}
|