This commit is contained in:
Eric
2026-02-09 11:24:51 +08:00
commit f2173a9fa9
491 changed files with 43791 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import autoImport from 'unplugin-auto-import/vite'
import type { Plugin } from 'vite'
export default function createAutoImport(): Plugin {
return autoImport({
imports: [
'vue',
'vue-router',
'pinia'
],
dts: false
})
}