diff --git a/src/scripts/router.ts b/src/scripts/router.ts index 6c7624c..2a32bae 100644 --- a/src/scripts/router.ts +++ b/src/scripts/router.ts @@ -51,6 +51,12 @@ const routes: Array = [ meta: {title: '我做的', navBookmark: 'Others'}, component: () => import('../views/others/Projects.vue') }, + { + path: '/photo', + name: 'Photo', + meta: {title: '摄影', navBookmark: 'Others'}, + component: () => import('../views/Photo.vue') + }, ] export const router = createRouter({ diff --git a/src/views/Photo.vue b/src/views/Photo.vue new file mode 100644 index 0000000..d02c7e4 --- /dev/null +++ b/src/views/Photo.vue @@ -0,0 +1,83 @@ + + + + + \ No newline at end of file