sinchang / vue-social-share

A Vue 2.x social share component
http://vue-social-share.surge.sh/
142 stars 37 forks source link

自定义分享内容无效? #6

Closed huangche007 closed 6 years ago

huangche007 commented 6 years ago

config对象: data(){ return{ config:{} } }

mounted(){ this.getNewsDetailData(); }

methods:{ getNewsDetailData(){ axios.get("xxxx").then(res)=>{ this.newDetailObj = res.data.data.detail; this.isShowAll = true; this.config.url = window.location.href; this.config.source = this.newDetailObj.source; this.config.title = this.newDetailObj.title; this.config.description = this.newDetailObj.abstract; this.config.image = this.newDetailObj.image; } } } 发现自定义分享的内容无效