Contact page

This commit is contained in:
2025-11-15 19:11:43 +02:00
parent 319a2a21d1
commit 2b322a684a
3 changed files with 100 additions and 0 deletions

View File

@@ -17,6 +17,11 @@ const router = createRouter({
// which is lazy-loaded when the route is visited.
component: () => import('../views/AboutView.vue'),
},
{
path: '/contact',
name: 'contact',
component: () => import('../views/ContactView.vue'),
},
],
})