diff --git a/README.md b/README.md index 6759280..9f0bfb3 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ This template should help get you started developing with Vue 3 in Vite. - [x] render ~~plantuml~~ mermaid - [x] custom css in sub repo - [ ] custom layout in sub repo ? -- [ ] build RSS feed +- [x] build RSS feed - [x] link to home - [ ] link to previous/next article - [x] set page title diff --git a/src/interfaces.ts b/src/interfaces.ts index 835755d..dcc91ad 100644 --- a/src/interfaces.ts +++ b/src/interfaces.ts @@ -8,8 +8,8 @@ export interface ArticleMetadata { title: string date: Date author: string - thumbnail: string - draft: boolean + thumbnail?: string + draft?: boolean } export interface Article { diff --git a/src/views/ArticleView.vue b/src/views/ArticleView.vue index ec35b93..76c3281 100644 --- a/src/views/ArticleView.vue +++ b/src/views/ArticleView.vue @@ -40,17 +40,16 @@ onBeforeRouteUpdate(loadPage)