some initial setup work for GUI

This commit is contained in:
2024-05-29 08:34:07 +02:00
parent cc09bb87f8
commit eb15e1fc3f
19 changed files with 3705 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
import { createRouter, createWebHistory } from 'vue-router';
import HomeView from '@/views/HomeView.vue';
const router = createRouter( {
history: createWebHistory( import.meta.env.BASE_URL ),
routes: [
{
path: '/',
name: 'home',
component: HomeView
},
]
} );
export default router;