创建vue项目

This commit is contained in:
2026-02-06 20:19:09 +08:00
parent 3cb15575e6
commit 99c5c5089e
13 changed files with 1680 additions and 0 deletions

9
vite.config.mts Normal file
View File

@@ -0,0 +1,9 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
export default defineConfig({
plugins: [vue()],
server: {
port: 5173,
}
})