24 lines
478 B
JavaScript
24 lines
478 B
JavaScript
export default {
|
|
data() {
|
|
return {
|
|
share:{
|
|
title: 'CRM',
|
|
imageUrl:'',
|
|
}
|
|
}
|
|
},
|
|
onShareAppMessage(res) { //发送给朋友
|
|
return {
|
|
title: this.share.title,
|
|
imageUrl: this.share.imageUrl,
|
|
}
|
|
},
|
|
onShareTimeline(res) {//分享到朋友圈
|
|
return {
|
|
title: this.share.title,
|
|
imageUrl: this.share.imageUrl,
|
|
}
|
|
},
|
|
}
|
|
|