first commit

This commit is contained in:
Your Name
2026-01-19 14:05:26 +08:00
commit c5d98f491e
353 changed files with 25626 additions and 0 deletions

5
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>

14
typings/router.d.ts vendored Normal file
View File

@@ -0,0 +1,14 @@
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
}
}