sen
2025-09-01 c9420f1af08fbbc15af22df32b33d3f121f4c507
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
    })
}