Files
vtsuru.live/src/router/client.ts
Megghy 07948e6777 feat: 更新项目配置和依赖,增强功能和用户体验
- 完成弹幕机功能
- 在 .editorconfig 中新增对 vine.ts 文件的支持。
- 更新 package.json 中多个依赖的版本,提升稳定性和性能。
- 在 vite.config.mts 中引入 @guolao/vue-monaco-editor 插件,增强代码编辑功能。
- 在 App.vue 中调整内容填充的样式,优化界面布局。
- 新增获取配置文件哈希的 API 方法,提升配置管理能力。
- 在多个组件中优化了样式和逻辑,提升用户交互体验。
2025-04-25 00:08:06 +08:00

68 lines
1.5 KiB
TypeScript

export default {
path: '/client',
name: 'client',
children: [
{
path: '',
name: 'client-index',
component: () => import('@/client/ClientIndex.vue'),
meta: {
title: '首页',
forceReload: true,
}
},
{
path: 'fetcher',
name: 'client-fetcher',
component: () => import('@/client/ClientFetcher.vue'),
meta: {
title: 'EventFetcher',
forceReload: true,
}
},
{
path: 'settings',
name: 'client-settings',
component: () => import('@/client/ClientSettings.vue'),
meta: {
title: '设置',
forceReload: true,
}
},
{
path: 'danmaku-window-manage',
name: 'client-danmaku-window-manage',
component: () => import('@/client/DanmakuWindowManager.vue'),
meta: {
title: '弹幕窗口管理',
forceReload: true,
}
},
{
path: 'auto-action',
name: 'client-auto-action-manage',
component: () => import('@/client/ClientAutoAction.vue'),
meta: {
title: '自动操作管理',
forceReload: true,
}
},
{
path: 'danmaku-window',
name: 'client-danmaku-window-redirect',
redirect: {
name: 'client-danmaku-window'
}
},
{
path: 'test',
name: 'client-test',
component: () => import('@/client/ClientTest.vue'),
meta: {
title: '测试',
forceReload: true,
}
},
]
}