Initial commit

This commit is contained in:
wsc-admin
2026-04-02 19:35:42 +09:00
commit 5522c1f096
14 changed files with 132 additions and 0 deletions

6
src/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 component: DefineComponent<{}, {}, any>
export default component
}