基础element-plus模板项目

This commit is contained in:
Gary Fu
2023-04-30 21:21:08 +08:00
parent 0b429ad27f
commit 84e0065559
18 changed files with 2534 additions and 120 deletions

14
vite.config.js Normal file
View File

@@ -0,0 +1,14 @@
import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue()],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
}
})