mirror of
https://github.com/Megghy/vtsuru.live.git
synced 2025-12-06 18:36:55 +08:00
- 完成弹幕机功能 - 在 .editorconfig 中新增对 vine.ts 文件的支持。 - 更新 package.json 中多个依赖的版本,提升稳定性和性能。 - 在 vite.config.mts 中引入 @guolao/vue-monaco-editor 插件,增强代码编辑功能。 - 在 App.vue 中调整内容填充的样式,优化界面布局。 - 新增获取配置文件哈希的 API 方法,提升配置管理能力。 - 在多个组件中优化了样式和逻辑,提升用户交互体验。
80 lines
1.8 KiB
TypeScript
80 lines
1.8 KiB
TypeScript
export default {
|
|
path: '/obs',
|
|
name: 'obs',
|
|
children: [
|
|
{
|
|
path: 'live-lottery',
|
|
name: 'obs-live-lottery',
|
|
component: () => import('@/views/obs/LiveLotteryOBS.vue'),
|
|
meta: {
|
|
title: '直播抽奖',
|
|
forceReload: true,
|
|
}
|
|
},
|
|
{
|
|
path: 'live-request',
|
|
name: 'obs-live-request',
|
|
alias: 'song-request',
|
|
component: () => import('@/views/obs/LiveRequestOBS.vue'),
|
|
meta: {
|
|
title: '弹幕点播',
|
|
forceReload: true,
|
|
}
|
|
},
|
|
{
|
|
path: 'live-request-today',
|
|
name: 'obs-live-request-today',
|
|
component: () => import('@/views/obs/LiveRequestProcessedOBS.vue'),
|
|
meta: {
|
|
title: '弹幕点播-今日',
|
|
forceReload: true,
|
|
}
|
|
},
|
|
{
|
|
path: 'queue',
|
|
name: 'obs-queue',
|
|
component: () => import('@/views/obs/QueueOBS.vue'),
|
|
meta: {
|
|
title: '弹幕排队',
|
|
forceReload: true,
|
|
}
|
|
},
|
|
{
|
|
path: 'music-request',
|
|
name: 'obs-music-request',
|
|
component: () => import('@/views/obs/MusicRequestOBS.vue'),
|
|
meta: {
|
|
title: '弹幕排队 (播放列表)',
|
|
forceReload: true,
|
|
}
|
|
},
|
|
{
|
|
path: 'question-display',
|
|
name: 'obs-question-display',
|
|
component: () => import('@/views/obs/QuestionDisplayOBS.vue'),
|
|
meta: {
|
|
title: '棉花糖展示',
|
|
forceReload: true,
|
|
}
|
|
},
|
|
{
|
|
path: 'web-fetcher',
|
|
name: 'obs-web-fetcher',
|
|
component: () => import('@/views/obs/WebFetcherOBS.vue'),
|
|
meta: {
|
|
title: '弹幕收集器 (OBS版)',
|
|
forceReload: true,
|
|
}
|
|
},
|
|
{
|
|
path: 'danmuji',
|
|
name: 'obs-danmuji',
|
|
component: () => import('@/views/obs/DanmujiOBS.vue'),
|
|
meta: {
|
|
title: '弹幕姬',
|
|
forceReload: true,
|
|
}
|
|
}
|
|
]
|
|
}
|