[M] Move projects to others

This commit is contained in:
Hykilpikonna
2022-05-11 13:30:51 -04:00
parent 76c2f8d5ce
commit 9647b7118d
2 changed files with 6 additions and 3 deletions
+6 -3
View File
@@ -18,9 +18,6 @@ const routes: Array<RouteRecordRaw> = [
path: '/about',
name: 'About',
meta: {title: '关于', nav: true},
// 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('../views/About.vue')
},
{
@@ -54,6 +51,12 @@ const routes: Array<RouteRecordRaw> = [
meta: {title: '朋友们', navBookmark: 'Others'},
component: () => import('../views/others/Friends.vue')
},
{
path: '/projects',
name: 'Projects',
meta: {title: '我做的', navBookmark: 'Others'},
component: () => import('../views/others/Projects.vue')
},
{
path: '/color',
name: 'ColorPicker',