wujianwei
2025-08-15 8776c82342ede39fe894dec9a5e0ace216d1c99d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 
// @ts-ignore
import autoImport from 'unplugin-auto-import/vite'
 
export default function createAutoImport(){
    return autoImport({
        imports:[
            'vue',
            'vue-router',
            {
                'vuex':['useStore']
            }
        ],
        dts:false
    })
}