first commit

This commit is contained in:
zc
2026-06-12 17:09:39 +08:00
commit ae41b388cb
756 changed files with 273542 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
import components from 'unplugin-vue-components/vite'
export default function createComponents() {
return components({
// 指定组件位置,默认是 src/components 自动导入自定义组件
dirs: ['src/components'],
extensions: ['vue', 'tsx'],
// 配置文件生成位置
dts: './src/types/components.d.ts',
})
}