chore: gitea actions

This commit is contained in:
2026-01-30 13:23:51 +08:00
parent 76226a32c9
commit fc0b363a33
11 changed files with 347 additions and 7 deletions

View File

@@ -5,14 +5,14 @@ const routes: RouteRecordRaw[] = [
{
path: '/',
name: 'Home',
component: () => import('../views/Home.vue'),
component: () => import('../views/index.vue'),
meta: { title: '首页' },
},
// 可以添加更多路由
]
const router = createRouter({
history: createWebHashHistory(), // 使用 Hash 模式兼容 Electron
history: createWebHashHistory('/dcs-web'), // 使用 Hash 模式兼容 Electron
routes,
})