initial commit

This commit is contained in:
2024-09-14 21:04:16 +08:00
commit 000eb1c790
17 changed files with 9224 additions and 0 deletions

8
src/env.d.ts vendored Normal file
View File

@ -0,0 +1,8 @@
/// <reference types="vite/client" />
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
}