添加客户端

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: '测试',
}
},
]
}

View File

@@ -6,6 +6,7 @@ import user from './user'
import obs from './obs'
import open_live from './open_live'
import singlePage from './singlePage'
import client from './client';
const routes: Array<RouteRecordRaw> = [
{
@@ -88,6 +89,7 @@ const routes: Array<RouteRecordRaw> = [
manage,
obs,
open_live,
client,
{
path: '/@:id',
name: 'user',