12 lines
195 B
JavaScript
Raw Normal View History

2025-06-30 09:38:03 +08:00
import autoImport from 'unplugin-auto-import/vite'
export default function createAutoImport() {
return autoImport({
imports: [
'vue',
'vue-router'
],
dts: false
})
}