mirror of
https://github.com/yangzongzhuan/RuoYi-Cloud-Vue3.git
synced 2025-05-29 20:19:00 +00:00
13 lines
256 B
JavaScript
13 lines
256 B
JavaScript
import autoImport from 'unplugin-auto-import/vite'
|
|
|
|
export default function createAutoImport() {
|
|
return autoImport({
|
|
imports: [
|
|
'vue',
|
|
'vue-router',
|
|
'pinia'
|
|
],
|
|
dts: false
|
|
})
|
|
}
|