feat: 添加用户认证功能,包含登录、管理控制台和节点提交页面

This commit is contained in:
ioococ
2025-11-16 19:16:35 +08:00
parent 13bd80471b
commit 7e03f12817
6 changed files with 822 additions and 17 deletions

View File

@@ -19,6 +19,16 @@ const router = createRouter({
name: 'submit',
component: () => import('../views/SubmitView.vue'),
},
{
path: '/login',
name: 'login',
component: () => import('../views/LoginView.vue'),
},
{
path: '/dashboard',
name: 'dashboard',
component: () => import('../views/DashboardView.vue'),
},
],
})