Login page finished

This commit is contained in:
2023-01-30 21:32:32 -03:00
parent d82eb440e8
commit 8626368af2
5 changed files with 456 additions and 324 deletions

View File

@@ -2,6 +2,7 @@ import { createRouter, createWebHistory } from 'vue-router';
import AppLayout from '@/layout/AppLayout.vue';
import HomeView from '../views/HomeView.vue';
import Landing from '../views/Landing.vue';
import Login from '../views/Login.vue';
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
@@ -10,6 +11,10 @@ const router = createRouter({
path: '/',
component: Landing
},
{
path: '/login',
component: Login
},
{
path: '/home',
component: AppLayout,