wujianwei
2025-08-13 8ad0d1ebdd0d9eab8b706901e3304cbb1b439c30
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
    })
}