mirror of
https://gitee.com/java110/WechatOwnerService.git
synced 2026-02-23 21:36:38 +08:00
23 lines
453 B
JavaScript
23 lines
453 B
JavaScript
let MIXIN = {
|
|
data() {
|
|
return {
|
|
share:{
|
|
title: '自定义分享标题',
|
|
imageUrl:'http://ossweb-img.qq.com/images/lol/web201310/skin/big10001.jpg',
|
|
}
|
|
}
|
|
},
|
|
onShareAppMessage(res) { //发送给朋友
|
|
return {
|
|
title: this.share.title,
|
|
imageUrl: this.share.imageUrl,
|
|
}
|
|
},
|
|
onShareTimeline(res) {//分享到朋友圈
|
|
return {
|
|
title: this.share.title,
|
|
imageUrl: this.share.imageUrl,
|
|
}
|
|
},
|
|
};
|
|
export default MIXIN; |