Skip to content

Instantly share code, notes, and snippets.

@andreliem
Created July 31, 2017 21:18
Show Gist options
  • Save andreliem/a9e54f27560b72bc2b97e10ce5a5cadb to your computer and use it in GitHub Desktop.
Save andreliem/a9e54f27560b72bc2b97e10ce5a5cadb to your computer and use it in GitHub Desktop.
meta tag nuxt example
export default {
head () {
let post = this.post
return {
title: post.meta.name,
meta: [
{
hid: `description`,
name: 'description',
content: post.meta.content
},
{
hid: `keywords`,
name: 'keywords',
keywords: post.meta.keywords
}
]
}
},
computed: {
post () {
return this.$store.state.post
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment