大语言模型
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

auto-import.js 244B

123456789101112
  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. }