add front user register and login page

This commit is contained in:
2025-11-10 11:07:48 +08:00
parent 0cfecab68f
commit 0f84ef186c
8 changed files with 613 additions and 1 deletions
+8 -1
View File
@@ -1,10 +1,17 @@
import './assets/main.css'
import 'ant-design-vue/dist/reset.css'
import { createApp } from 'vue'
import { createPinia } from 'pinia'
import { createRouter, createWebHistory } from 'vue-router'
import { routes } from 'vue-router/auto-routes'
import App from './App.vue'
import router from './router'
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
routes,
})
const app = createApp(App)