This commit is contained in:
吴红兵
2025-12-02 10:37:49 +08:00
commit 1f645dad3e
1183 changed files with 147673 additions and 0 deletions

13
src/types/func.d.ts vendored Normal file
View File

@@ -0,0 +1,13 @@
// 定义全局属性的类型
import { ComponentCustomProperties } from 'vue';
declare module '@vue/runtime-core' {
interface ComponentCustomProperties {
parseTime: Function;
parseDate: Function;
dateTimeStr: string;
dateStr: string;
timeStr: string;
baseURL: string;
}
}