美文网首页
2019-10-23 vue中使用share.js

2019-10-23 vue中使用share.js

作者: 执念_6afc | 来源:发表于2019-10-23 09:18 被阅读0次

    1 使用npm下载share.js

         npm install vue-social-share -S
    

    2 在main.js中引入

      import Share from 'vue-social-share'
      Vue.use(Share)
    

    3 在需要的页面中引入组件 config属性在data中配置

      <share :config="config"></share>
    
    
      config属性
      url                 : '', // 网址,默认使用 window.location.href
      source              : '', // 来源(QQ空间会用到), 默认读取head标签:<meta name="site" content="http://overtrue" />
      title               : '', // 标题,默认读取 document.title 或者 <meta name="title" content="share.js" />
      description         : '', // 描述, 默认读取head标签:<meta name="description" content="PHP弱类型的实现原理分析" />
      image               : '', // 图片, 默认取网页中第一个img标签
      sites               : ['qzone', 'qq', 'weibo','wechat', 'douban'], // 启用的站点
      disabled            : ['google', 'facebook', 'twitter'], // 禁用的站点
      wechatQrcodeTitle   : '微信扫一扫:分享', // 微信二维码提示文字
      wechatQrcodeHelper  : '<p>微信里点“发现”,扫一下</p><p>二维码便可将本文分享至朋友圈。</p>'

    相关文章

      网友评论

          本文标题:2019-10-23 vue中使用share.js

          本文链接:https://www.haomeiwen.com/subject/fkshvctx.html