您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12 行
210 B

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