mirror of
https://github.com/continew-org/continew-admin-ui.git
synced 2025-09-08 12:57:11 +08:00
14 lines
306 B
TypeScript
14 lines
306 B
TypeScript
import autoImport from 'unplugin-auto-import/vite'
|
|
|
|
export default function createAutoImport() {
|
|
return autoImport({
|
|
// 自动导入 vue 相关函数,如: ref、reactive、toRef等
|
|
imports: [
|
|
'vue',
|
|
'vue-router',
|
|
'pinia'
|
|
],
|
|
dts: './src/types/auto-imports.d.ts'
|
|
})
|
|
}
|