初始版本

This commit is contained in:
贾祥聪
2025-08-19 14:16:51 +08:00
commit f937a1f9b9
4373 changed files with 359728 additions and 0 deletions

5
admin/typings/index.d.ts vendored Normal file
View File

@@ -0,0 +1,5 @@
declare module 'vue3-video-play'
declare module 'css-color-function'
type PromiseFun = (...arg: any[]) => Promise<any>

15
admin/typings/router.d.ts vendored Normal file
View File

@@ -0,0 +1,15 @@
import 'vue-router'
declare module 'vue-router' {
// 扩展 RouteMeta
interface RouteMeta {
type?: string
perms?: string
title?: string
icon?: string
hidden?: boolean
activeMenu?: string
hideTab?: boolean
keepAlive?: boolean
}
}