diff options
author | Santo Cariotti <santo@dcariotti.me> | 2021-03-23 15:14:32 +0100 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2021-03-23 15:14:32 +0100 |
commit | 08febdd980c06d752d410be1fa982e5507279f6d (patch) | |
tree | 17ef25b0567097346cfb8ba233b9b1d010984676 /src/router.js | |
parent | 035241e70d05eb0ae75c79fab6b4052e66ff0464 (diff) |
feat: commit details page
Diffstat (limited to 'src/router.js')
-rw-r--r-- | src/router.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/router.js b/src/router.js index 5dc4e51..9363d15 100644 --- a/src/router.js +++ b/src/router.js @@ -2,6 +2,7 @@ import Vue from 'vue' import VueRouter from 'vue-router' import Home from '@/views/Home.vue' +import Commit from '@/views/Commit.vue' Vue.use(VueRouter) @@ -10,6 +11,12 @@ const routes = [ path: '/', name: 'Home', component: Home, + }, + { + path: '/commit/:hash', + name: 'Commit', + component: Commit, + props: true } ] |