(cards) implements spaced repetition cards

This commit is contained in:
2021-06-12 16:11:47 +02:00
parent 54bce75122
commit 257dc0794b
9 changed files with 210 additions and 8 deletions

View File

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