initial frontend pages

This commit is contained in:
2025-01-25 10:34:45 -08:00
parent 62384a3430
commit 44523f3cdb
8 changed files with 130 additions and 37 deletions

View File

@@ -8,6 +8,16 @@ const router = createRouter({
name: 'home',
component: () => import('../views/HomeView.vue'),
},
{
path: '/graph',
name: 'graph',
component: () => import('../views/GraphView.vue'),
},
{
path: '/list',
name: 'list',
component: () => import('../views/TelemetryListView.vue'),
},
],
});