Initial commit: first version of project

This commit is contained in:
duyufeng
2025-09-16 17:27:55 +08:00
commit b9024cd644
45 changed files with 9230 additions and 0 deletions

6
src/types/shims-vue.d.ts vendored Normal file
View File

@@ -0,0 +1,6 @@
//添加类型声明文件,防止找不到模块
declare module '*.vue' {
import { DefineComponent } from 'vue'
const component: DefineComponent<{}, {}, any>
export default component
}