feat(pages): separate station-page from dashboard-page

This commit is contained in:
yangsy
2025-11-19 11:55:13 +08:00
parent 0c3e9c24f9
commit 91a665695e
5 changed files with 100 additions and 67 deletions

View File

@@ -17,6 +17,10 @@ const router = createRouter({
path: 'dashboard',
component: () => import('@/pages/dashboard-page.vue'),
},
{
path: 'station',
component: () => import('@/pages/station-page.vue'),
},
{
path: 'device',
component: () => import('@/pages/device-page.vue'),