first commit

This commit is contained in:
LeoKu
2021-10-16 18:29:32 +08:00
commit 8898705348
136 changed files with 12237 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 type { DefineComponent } from 'vue'
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/ban-types
const component: DefineComponent<{}, {}, any>
export default component
}