added some test pages to the frontend

This commit is contained in:
2025-09-09 21:07:32 +02:00
parent c7d71036d7
commit f1e44417fd
12 changed files with 434 additions and 62 deletions

View File

@@ -2,7 +2,12 @@ const routes = [
{
path: '/',
component: () => import('layouts/MainLayout.vue'),
children: [{ path: '', component: () => import('pages/IndexPage.vue') }],
children: [
{ path: '', component: () => import('pages/IndexPage.vue') },
{ path: 'test_DartPicker', component: () => import('pages/testDartPickerPage.vue') },
{ path: 'test_NumbersPage', component: () => import('pages/testNumbersPage.vue') },
{ path: 'test_WebSpeechApi', component: () => import('pages/testWebSpeechApi.vue') }
],
},
// Always leave this as last one,