feat: 添加登录对话框组件和测试路由

添加新的登录对话框组件 LoginDialog.vue,包含表单验证和登录逻辑
在路由配置中添加测试页路由 '/test' 用于后续开发
This commit is contained in:
houakang
2026-04-12 10:55:28 +08:00
parent d977da5c38
commit 781a3137a6
2 changed files with 131 additions and 0 deletions

View File

@@ -19,6 +19,12 @@ const routes = [
component: () => import('@/views/bonjour/BonjourView.vue'),
meta: { title: '发现设备' },
},
{
path: '/test',
name: 'Test',
component: () => import('@/views/test/TestView.vue'),
meta: { title: '测试页' },
},
];
const router = createRouter({