wujianwei
2025-08-15 d6ef95a56915bd2c04a5956f632e5833afe627e1
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
    })
}