end of project
This commit is contained in:
@@ -1,9 +1,5 @@
|
||||
import { createRouter, createWebHistory } from 'vue-router'
|
||||
|
||||
const page = {
|
||||
template:'<div>Je Sais Pas trop quoi</div>'
|
||||
}
|
||||
|
||||
const routes = [
|
||||
|
||||
{
|
||||
@@ -11,16 +7,10 @@ const routes = [
|
||||
name: 'home',
|
||||
component: () => import('@/views/Index.vue')
|
||||
},
|
||||
|
||||
{
|
||||
path: '/footer',
|
||||
name: 'footer',
|
||||
component: () => import('@/components/Footer.vue')
|
||||
},
|
||||
{
|
||||
path: '/whoAmI',
|
||||
name: 'whoAmI',
|
||||
component: () => import('@/views/WhoAmI.vue')
|
||||
path: '/profile',
|
||||
name: 'profile',
|
||||
component: () => import('@/views/Profile.vue')
|
||||
},
|
||||
{
|
||||
path: '/technologies',
|
||||
@@ -42,6 +32,11 @@ const routes = [
|
||||
name: 'contact',
|
||||
component: () => import('@/views/Contact.vue')
|
||||
},
|
||||
{
|
||||
path: '/:pathMatch(.*)',
|
||||
name: '404',
|
||||
component: () => import('@/views/404.vue')
|
||||
},
|
||||
|
||||
]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user