1 Commits

Author SHA1 Message Date
1f22538b15 Feat: clean about 2023-07-02 09:01:45 +02:00
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>