第 1 阶段:用户与认证, mock登陆ok

This commit is contained in:
yml
2026-05-22 15:21:36 +08:00
parent 8e7f1f17f0
commit 9a79603e10
21 changed files with 780 additions and 4 deletions
+1
View File
@@ -4,6 +4,7 @@ const router = createRouter({
history: createWebHistory(),
routes: [
{ path: '/', name: 'home', component: () => import('@/views/public/HomeView.vue') },
{ path: '/login', name: 'login', component: () => import('@/views/account/LoginView.vue') },
{ path: '/listings', name: 'listings', component: () => import('@/views/public/ListingsView.vue') },
{ path: '/listings/:id', name: 'listing-detail', component: () => import('@/views/public/ListingDetailView.vue') },
{ path: '/orders/create', name: 'order-create', component: () => import('@/views/account/OrderCreateView.vue') },