This commit is contained in:
hh
2021-12-29 11:25:14 +08:00
commit 79a82e7c51
248 changed files with 15979 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
})
}