Files
wireguard-dashboard-admin/src/views/test-page/route.js

43 lines
942 B
JavaScript
Raw Normal View History

2022-08-07 22:25:28 +08:00
const Layout = () => import('@/layout/index.vue')
export default {
name: 'Test',
path: '/test',
component: Layout,
redirect: '/test/unocss',
meta: {
title: '基础功能测试',
2022-08-27 11:46:34 +08:00
customIcon: 'logo',
2022-08-08 15:44:16 +08:00
order: 1,
2022-08-07 22:25:28 +08:00
},
children: [
{
name: 'Unocss',
path: 'unocss',
2022-08-08 15:36:43 +08:00
component: () => import('./unocss/index.vue'),
2022-08-07 22:25:28 +08:00
meta: {
title: '测试unocss',
2022-08-27 11:46:34 +08:00
icon: 'material-symbols:auto-awesome-outline-rounded',
2022-08-07 22:25:28 +08:00
},
},
{
name: 'Message',
path: 'message',
2022-08-08 15:36:43 +08:00
component: () => import('./message/index.vue'),
2022-08-07 22:25:28 +08:00
meta: {
title: '测试Message',
2022-08-27 11:46:34 +08:00
icon: 'material-symbols:auto-awesome-outline-rounded',
2022-08-07 22:25:28 +08:00
},
},
{
name: 'Dialog',
path: 'dialog',
2022-08-08 15:36:43 +08:00
component: () => import('./dialog/index.vue'),
2022-08-07 22:25:28 +08:00
meta: {
title: '测试Dialog',
2022-08-27 11:46:34 +08:00
icon: 'material-symbols:auto-awesome-outline-rounded',
2022-08-07 22:25:28 +08:00
},
},
],
}