feat: FRO-2 Implement Login Component wip

This commit is contained in:
2025-12-03 21:58:39 +01:00
committed by Janis
parent 4e6cb4a350
commit e8e3a08b7c
5 changed files with 176 additions and 7 deletions

View File

@@ -1,5 +1,6 @@
import { createRouter, createWebHistory } from 'vue-router'
import HomeView from '../views/HomeView.vue'
import LoginView from '../views/LoginView.vue'
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
@@ -9,6 +10,11 @@ const router = createRouter({
name: 'home',
component: HomeView,
},
{
path: '/login',
name: 'login',
component: LoginView,
},
{
path: '/about',
name: 'about',