(historic notes) add history note page

This commit is contained in:
Julien Calixte
2021-08-08 00:19:49 +02:00
parent a3082f25bd
commit 9792e2e56b
4 changed files with 78 additions and 0 deletions

View File

@@ -41,6 +41,15 @@ const routes: Array<RouteRecordRaw> = [
component: () =>
import(/* webpackChunkName: "draft-notes" */ '@/views/DraftNotes.vue')
},
{
path: '/:user/:repo/history',
name: 'HistoricNotes',
props: true,
component: () =>
import(
/* webpackChunkName: "historic-notes" */ '@/views/HistoricNotes.vue'
)
},
{
path: '/:user/:repo/spaced-repetition',
name: 'SpacedRepetitionCard',