initial project with login web

This commit is contained in:
2026-01-14 12:57:30 +08:00
commit e3f0ae2b6e
19 changed files with 5252 additions and 0 deletions

13
vite.config.js Normal file
View File

@@ -0,0 +1,13 @@
import { defineConfig } from "vite";
import uni from "@dcloudio/vite-plugin-uni";
import Components from "unplugin-vue-components/vite";
import { VantResolver } from "@vant/auto-import-resolver";
export default defineConfig({
plugins: [
uni(),
Components({
resolvers: [VantResolver()],
}),
],
});