feat:初始化工程

This commit is contained in:
2026-05-27 20:02:57 +08:00
commit fa8787c77a
18 changed files with 2195 additions and 0 deletions

8
vite.config.ts Normal file
View File

@@ -0,0 +1,8 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
// https://vite.dev/config/
export default defineConfig({
plugins: [vue()],
base: './',
})