This commit is contained in:
quantulr
2023-11-01 22:29:43 +08:00
parent edf18e13eb
commit d2c335a4e5
250 changed files with 16417 additions and 15597 deletions

View File

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

View File

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