refactor: modularize frontend flows

This commit is contained in:
Lan
2026-06-03 02:01:57 +08:00
parent 9300607f96
commit a11e7900b4
85 changed files with 4654 additions and 4363 deletions
+11
View File
@@ -3,3 +3,14 @@ declare module '*.vue' {
const componentOptions: ComponentOptions
export default componentOptions
}
declare module 'vue-router' {
interface RouteMeta {
requiresAuth?: boolean
showGlobalControls?: boolean
showRouteLoading?: boolean
title?: string
}
}
export {}