mirror of
https://github.com/Megghy/vtsuru.live.git
synced 2025-12-08 11:26:56 +08:00
29 lines
619 B
TypeScript
29 lines
619 B
TypeScript
export default [
|
|
{
|
|
path: '/question-display',
|
|
name: 'question-display',
|
|
component: async () => import('@/views/single/QuestionDisplay.vue'),
|
|
meta: {
|
|
title: '棉花糖展示页',
|
|
},
|
|
},
|
|
{
|
|
path: '/playground/test',
|
|
name: 'test',
|
|
component: async () => import('@/views/TestView.vue'),
|
|
meta: {
|
|
title: '测试页',
|
|
},
|
|
},
|
|
{
|
|
path: '/danmaku-window',
|
|
name: 'client-danmaku-window',
|
|
component: async () => import('@/client/ClientDanmakuWindow.vue'),
|
|
meta: {
|
|
title: '弹幕窗口',
|
|
ignoreLogin: true,
|
|
forceReload: true,
|
|
},
|
|
},
|
|
]
|