(draft) add draft folder page in note header

Closes #1
This commit is contained in:
Julien Calixte
2021-03-21 11:00:56 +01:00
parent a0a0f42e96
commit e96253959d
5 changed files with 91 additions and 7 deletions

View File

@@ -35,6 +35,13 @@ const routes: Array<RouteRecordRaw> = [
/* webpackChunkName: "fleeting-notes" */ '@/views/FleetingNotes.vue'
)
},
{
path: '/:user/:repo/draft',
name: 'DraftNotes',
props: true,
component: () =>
import(/* webpackChunkName: "draft-notes" */ '@/views/DraftNotes.vue')
},
{
path: '/about',
name: 'About',