feat: 重构布局并添加监控和提交节点页面

This commit is contained in:
ioococ
2025-11-10 15:30:59 +08:00
parent ef811b6f25
commit 79c1b465e8
6 changed files with 83 additions and 84 deletions

View File

@@ -10,12 +10,14 @@ const router = createRouter({
component: HomeView,
},
{
path: '/about',
name: 'about',
// route level code-splitting
// this generates a separate chunk (About.[hash].js) for this route
// which is lazy-loaded when the route is visited.
component: () => import('../views/AboutView.vue'),
path: '/monitor',
name: 'monitor',
component: () => import('../views/MonitorView.vue'),
},
{
path: '/submit',
name: 'submit',
component: () => import('../views/SubmitView.vue'),
},
],
})