nuxt / vue-meta

Manage HTML metadata in Vue.js components with SSR support
https://vue-meta.nuxtjs.org
Other
4.08k stars 247 forks source link

Issue with chrome browser #791

Open ricardo17coelho opened 1 year ago

ricardo17coelho commented 1 year ago

Is not working on chrome browser (tested with Version 109.0.5414.87 MacOS)

Firefox Developer Editon 110.0b3 (64-Bit) MacOS works.

import VueMeta from 'vue-meta';

Vue.use(VueMeta, {
  // optional pluginOptions
  refreshOnceOnNavigation: true
});
  metaInfo() {
    return {
      title: this.option?.title,
      titleTemplate: '%s - Test',
      link: [
        {
          hid: 'icon',
          rel: 'icon',
          type: 'image/svg',
          href: `/images/${this.tabIcon}`
        }
      ]
    };
  }

Chrome:

Firefox: Screenshot 2023-01-20 at 12 53 35

ricardo17coelho commented 1 year ago

?