sen
2025-08-15 85b9dbfaa4afdc5738dcf97a40b50b58b1ee6ad6
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
    })
}