Nuxt页面特定的元不渲染

时间:2020-07-10 19:51:27

标签: vue.js nuxt.js meta head

所以我有一个通用的nuxt应用程序。 Nuxt.config元标记和标题呈现得很好,页面上head方法的标题按预期覆盖了nuxt.config标题。但是页面上head方法的meta标签并不会覆盖nuxt.config meta和渲染。这是页面上的head方法。

head() {
    return {
      title: 'Test',
      meta: [
        { hid: 'description', property: 'description', content: 'Hottest clips for' + this.$route.query.game,
          hid: 'og:type', name:'og:type', content: 'website',
          hid: 'og:image', name:'og:image', content: 'https://cdn2.unrealengine.com/Fortnite%2Fblog%2Fconsejos-comprometidos%2F11BR_Evergreens_Blue_NewsHeader-1920x1080-77ade2f5f2bc0312b4978dcd7639adfe00211fe6.jpg',
          hid: 'og:url', name:'og:url', content: 'https://twitch-toc.now.sh'
          }
      ]
    }
  },

0 个答案:

没有答案