[U] Titles

This commit is contained in:
Hykilpikonna
2021-12-25 15:57:29 -05:00
parent 8b2a2dda4a
commit fbaf5a04ca
3 changed files with 14 additions and 1 deletions
+6
View File
@@ -5,16 +5,19 @@ const routes: Array<RouteRecordRaw> = [
{
path: '/',
name: 'Home',
meta: {title: 'Home'},
component: Home
},
{
path: '/new-home',
name: 'New Home',
meta: {title: 'Home'},
component: () => import('../views/NewHome.vue')
},
{
path: '/about',
name: 'About',
meta: {title: 'About Me'},
// route level code-splitting
// this generates a separate chunk (about.[hash].js) for this route
// which is lazy-loaded when the route is visited.
@@ -23,16 +26,19 @@ const routes: Array<RouteRecordRaw> = [
{
path: '/life',
name: 'Life',
meta: {title: 'Life'},
component: () => import('../views/Life.vue')
},
{
path: '/color',
name: 'ColorPicker',
meta: {title: 'Color Picker'},
component: () => import('../components/color/ColorPickerTest.vue')
},
{
path: '/projects',
name: 'Projects',
meta: {title: 'Projects'},
component: () => import('../views/Projects.vue')
}
]