I'm having an issue when I navigate to another page: the meta tags are not getting updated correctly, only the title gets updated. The rest of the tags just disappear.
about.vue (simplified)
export default {
head () {
return {
title: 'This is the about page',
meta: [
{ hid: 'og-title', property: 'og-title', content: 'About page description for og' },
]
}
}
}
The tags are visible on the first load, but then if I go to another page and come back, the tags won't be shown. URL: https://dist-zetwcskggm.now.sh/about - am I doing something wrong?
<!--cmty--><!--cmty_prevent_hook--><div align="right"><sub><em>This question is available on <a href="https://nuxtjs.cmty.io">Nuxt.js</a> community (<a href="https://nuxtjs.cmty.io/nuxt/nuxt.js/issues/c1475">#c1475</a>)</em></sub></div>