web
5 天以前 15c5e70dd90a0389d70b3d855977dfd9070588fc
1
2
3
4
5
6
7
8
9
10
11
12
import autoImport from 'unplugin-auto-import/vite'
 
export default function createAutoImport() {
    return autoImport({
        imports: [
            'vue',
            'vue-router',
            'pinia'
        ],
        dts: false
    })
}