This commit is contained in:
zzz
2025-04-06 21:12:44 +08:00
commit eff03c4528
24 changed files with 3587 additions and 0 deletions

6
env.d.ts vendored Normal file
View File

@@ -0,0 +1,6 @@
/// <reference types="vite/client" />
declare module "*.vue" {
import type { DefineComponent } from "vue";
const vueComponent: DefineComponent<{}, {}, any>;
export default vueComponent;
}