新增vue3

This commit is contained in:
不做码农
2022-04-15 17:12:43 +08:00
parent e171ee3afe
commit 7017732df3
273 changed files with 14909 additions and 0 deletions

View File

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