样式调整
Some checks failed
Docker Build & Deploy / Build Docker Image (push) Failing after 19s
Docker Build & Deploy / Deploy to Production (push) Has been skipped

This commit is contained in:
2025-12-28 10:23:57 +08:00
parent 832015cd22
commit 1b011309d2
12 changed files with 227 additions and 64 deletions

View File

@@ -11,9 +11,9 @@ const router = createRouter({
meta: { requiresAuth: false },
},
{
path: '/',
name: 'transactions',
component: () => import('../views/TransactionsRecord.vue'),
path: '/balance',
name: 'balance',
component: () => import('../views/BalanceView.vue'),
meta: { requiresAuth: true },
},
{
@@ -59,7 +59,7 @@ const router = createRouter({
meta: { requiresAuth: true },
},
{
path: '/statistics',
path: '/',
name: 'statistics',
component: () => import('../views/StatisticsView.vue'),
meta: { requiresAuth: true },
@@ -69,6 +69,12 @@ const router = createRouter({
name: 'bill-analysis',
component: () => import('../views/BillAnalysisView.vue'),
meta: { requiresAuth: true },
},
{
path: '/message',
name: 'message',
component: () => import('../views/MessageView.vue'),
meta: { requiresAuth: true },
}
],
})