Home

Issue: 1644

Meta not being updated on route change

[issue link]

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?

This question is available on Nuxt.js community (#c1475)