Feat: clean about

This commit is contained in:
Bertrand Benjamin 2023-07-02 09:01:45 +02:00
parent db4806b7d2
commit 1f22538b15
2 changed files with 0 additions and 13 deletions

View File

@ -7,14 +7,6 @@ const routes = [
name: 'home',
component: HomeView
},
{
path: '/about',
name: 'about',
// route level code-splitting
// this generates a separate chunk (about.[hash].js) for this route
// which is lazy-loaded when the route is visited.
component: () => import(/* webpackChunkName: "about" */ '../views/AboutView.vue')
}
]
const router = createRouter({

View File

@ -1,5 +0,0 @@
<template>
<div class="about">
<h1>This is an about page</h1>
</div>
</template>