Login finished

This commit is contained in:
2023-01-31 23:09:14 -03:00
parent 0726a31ad5
commit 8e9288f7f1
15 changed files with 183 additions and 290 deletions

View File

@@ -3,6 +3,7 @@ import AppLayout from '@/layout/AppLayout.vue';
import HomeView from '../views/HomeView.vue';
import Landing from '../views/Landing.vue';
import Login from '../views/Login.vue';
import Chart from '@/views/menu/Chart.vue';
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
@@ -27,8 +28,8 @@ const router = createRouter({
{
path: '/charts',
name: 'charts',
component: () => import('@/views/menu/Chart.vue')
},
component: Chart
}/* ,
{
path: '/about',
name: 'about',
@@ -37,7 +38,7 @@ const router = createRouter({
// which is lazy-loaded when the route is visited.
component: () => import('../views/AboutView.vue')
}
} */
]
}
]