vue优化SEO组件指定title的两种方法

cnpm install vue-meta plugin

静态获取

    //静态获取
     metaInfo:{
       title: "静态获取标题",
       titleTemplate: '%s - by vue-meta',
     },

通过ajax请求后异步获取

metaInfo() {
      return {
        title: this.title+"-test",
        meta: [{
          vmid: 'description',
          name: 'description',
          content: this.title+"-test"
        }]
      }
    },
发布了62 篇原创文章 · 获赞 11 · 访问量 8077

猜你喜欢

转载自blog.csdn.net/u013252962/article/details/103511452