mirror of
https://github.com/Megghy/vtsuru.live.git
synced 2025-12-11 21:06:56 +08:00
- 完成弹幕机功能 - 在 .editorconfig 中新增对 vine.ts 文件的支持。 - 更新 package.json 中多个依赖的版本,提升稳定性和性能。 - 在 vite.config.mts 中引入 @guolao/vue-monaco-editor 插件,增强代码编辑功能。 - 在 App.vue 中调整内容填充的样式,优化界面布局。 - 新增获取配置文件哈希的 API 方法,提升配置管理能力。 - 在多个组件中优化了样式和逻辑,提升用户交互体验。
29 lines
595 B
TypeScript
29 lines
595 B
TypeScript
export default [
|
|
{
|
|
path: '/question-display',
|
|
name: 'question-display',
|
|
component: () => import('@/views/single/QuestionDisplay.vue'),
|
|
meta: {
|
|
title: '棉花糖展示页'
|
|
}
|
|
},
|
|
{
|
|
path: '/playground/test',
|
|
name: 'test',
|
|
component: () => import('@/views/TestView.vue'),
|
|
meta: {
|
|
title: '测试页'
|
|
}
|
|
},
|
|
{
|
|
path: '/danmaku-window',
|
|
name: 'client-danmaku-window',
|
|
component: () => import('@/client/ClientDanmakuWindow.vue'),
|
|
meta: {
|
|
title: '弹幕窗口',
|
|
ignoreLogin: true,
|
|
forceReload: true,
|
|
}
|
|
}
|
|
]
|