添加客户端

This commit is contained in:
2025-04-06 13:50:16 +08:00
parent 4476be60b5
commit d5c9e663da
32 changed files with 4462 additions and 443 deletions

38
src/router/client.ts Normal file
View File

@@ -0,0 +1,38 @@
export default {
path: '/client',
name: 'client',
children: [
{
path: '',
name: 'client-index',
component: () => import('@/client/ClientIndex.vue'),
meta: {
title: '首页',
}
},
{
path: 'fetcher',
name: 'client-fetcher',
component: () => import('@/client/ClientFetcher.vue'),
meta: {
title: 'EventFetcher',
}
},
{
path: 'settings',
name: 'client-settings',
component: () => import('@/client/ClientSettings.vue'),
meta: {
title: '设置',
}
},
{
path: 'test',
name: 'client-test',
component: () => import('@/client/ClientTest.vue'),
meta: {
title: '测试',
}
},
]
}