This commit is contained in:
2025-12-29 07:06:53 -08:00
commit cffb51b58c
48 changed files with 4764 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
import { createRouter, createWebHistory } from 'vue-router'
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
routes: [
{
path: '/',
name: 'home',
component: () => import('../pages/Home/index.vue'),
},
{
path: '/help',
name: 'help',
component: () => import('../pages/Help/index.vue'),
},
{
path: '/user-center',
name: 'user-center',
component: () => import('../pages/UserCenter/index.vue'),
},
],
})
export default router