Base module

This commit is contained in:
Marek Lenczewski
2026-04-11 14:11:23 +02:00
parent 4477b664ff
commit afc02abd0a
6 changed files with 139 additions and 2 deletions

View File

@@ -2,7 +2,13 @@ import { createRouter, createWebHistory } from 'vue-router'
const router = createRouter({
history: createWebHistory(),
routes: [],
routes: [
{
path: '/',
name: 'start',
component: () => import('../views/Startpage.vue'),
},
],
})
export default router