diff --git a/src/templates/Post.vue b/src/templates/Post.vue index eb6ce56..a2d7b2b 100644 --- a/src/templates/Post.vue +++ b/src/templates/Post.vue @@ -39,6 +39,17 @@ export default { Author, PostMeta, PostTags + }, + metaInfo () { + return { + title: this.$page.post.title, + meta: [ + { + name: 'description', + content: this.$page.post.description + } + ] + } } }