初始化仓库

This commit is contained in:
wangxiaowei
2025-05-20 13:28:17 +08:00
commit c1739d4e5d
553 changed files with 43740 additions and 0 deletions

3
typings/index.d.ts vendored Normal file
View File

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

15
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
}
}