first commot
All checks were successful
Docker Build & Deploy / Build Docker Image (push) Successful in 8s
Docker Build & Deploy / Deploy to Production (push) Successful in 7s

This commit is contained in:
孙诚
2025-12-25 11:20:56 +08:00
commit 4526cc6396
104 changed files with 11070 additions and 0 deletions

29
Web/src/router/index.js Normal file
View File

@@ -0,0 +1,29 @@
import { createRouter, createWebHistory } from 'vue-router'
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
routes: [
{
path: '/',
name: 'transactions',
component: () => import('../views/TransactionsRecord.vue'),
},
{
path: '/email',
name: 'email',
component: () => import('../views/EmailRecord.vue'),
},
{
path: '/setting',
name: 'setting',
component: () => import('../views/SettingView.vue'),
},
{
path: '/calendar',
name: 'calendar',
component: () => import('../views/CalendarView.vue'),
},
],
})
export default router