27 lines
420 B
JavaScript
27 lines
420 B
JavaScript
|
|
export default {
|
||
|
|
data() {
|
||
|
|
return {
|
||
|
|
share: {
|
||
|
|
title: '',
|
||
|
|
path: '',
|
||
|
|
imageUrl: '',
|
||
|
|
}
|
||
|
|
}
|
||
|
|
},
|
||
|
|
// 分享给朋友
|
||
|
|
onShareAppMessage(res) {
|
||
|
|
return {
|
||
|
|
title: this.share.title,
|
||
|
|
path: this.share.path,
|
||
|
|
imageUrl: this.share.imageUrl,
|
||
|
|
}
|
||
|
|
},
|
||
|
|
// 分享到朋友圈
|
||
|
|
onShareTimeline(res) {
|
||
|
|
return {
|
||
|
|
title: this.share.title,
|
||
|
|
path: this.share.path,
|
||
|
|
imageUrl: this.share.imageUrl,
|
||
|
|
}
|
||
|
|
},
|
||
|
|
}
|