This commit is contained in:
汤凯
2025-10-19 14:29:36 +08:00
parent b7570e392c
commit ae57bd1948
45 changed files with 6701 additions and 0 deletions

8
env.d.ts vendored Normal file
View File

@@ -0,0 +1,8 @@
// env.d.ts
// 这个文件生效的前提是 tsconfig.json 中配置了 "include": ["env.d.ts"],
declare module "*.vue" {
import { DefineComponent } from "vue";
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/ban-types
const component: DefineComponent<{}, {}, any>;
export default component;
}