chore: format code style and update linting configuration

This commit is contained in:
Megghy
2025-10-02 10:38:23 +08:00
parent 6fd046adcd
commit 758549d29d
253 changed files with 16258 additions and 15833 deletions

View File

@@ -2,27 +2,27 @@ export default [
{
path: '/question-display',
name: 'question-display',
component: () => import('@/views/single/QuestionDisplay.vue'),
component: async () => import('@/views/single/QuestionDisplay.vue'),
meta: {
title: '棉花糖展示页'
}
title: '棉花糖展示页',
},
},
{
path: '/playground/test',
name: 'test',
component: () => import('@/views/TestView.vue'),
component: async () => import('@/views/TestView.vue'),
meta: {
title: '测试页'
}
title: '测试页',
},
},
{
path: '/danmaku-window',
name: 'client-danmaku-window',
component: () => import('@/client/ClientDanmakuWindow.vue'),
component: async () => import('@/client/ClientDanmakuWindow.vue'),
meta: {
title: '弹幕窗口',
ignoreLogin: true,
forceReload: true,
}
}
},
},
]