mirror of
https://gitee.com/fantastic-admin/basic.git
synced 2024-12-05 05:27:39 +08:00
30 lines
742 B
JavaScript
30 lines
742 B
JavaScript
import autoImport from 'unplugin-auto-import/vite'
|
|
import { ElementPlusResolver } from 'unplugin-vue-components/resolvers'
|
|
|
|
export default function createAutoImport() {
|
|
return autoImport({
|
|
imports: [
|
|
'vue',
|
|
'vue-router',
|
|
{
|
|
'vue': [
|
|
'defineProps',
|
|
'defineEmits',
|
|
'defineExpose',
|
|
'withDefaults'
|
|
]
|
|
},
|
|
'pinia'
|
|
],
|
|
eslintrc: {
|
|
enabled: true,
|
|
filepath: './.eslintrc-auto-import.json',
|
|
globalsPropValue: true
|
|
},
|
|
resolvers: [
|
|
ElementPlusResolver()
|
|
],
|
|
dts: false
|
|
})
|
|
}
|