1
0
Fork 0

add title and desription meta

This commit is contained in:
Tommy Vedvik 2019-03-01 01:08:02 +01:00
parent 8fa1cad6b6
commit e6b673a44b

View file

@ -39,6 +39,17 @@ export default {
Author,
PostMeta,
PostTags
},
metaInfo () {
return {
title: this.$page.post.title,
meta: [
{
name: 'description',
content: this.$page.post.description
}
]
}
}
}
</script>