export default {
data() {
return {
shareParams: {
path: '/pages/index/index',
title: ''
}
}
},
onShareAppMessage(res) {
if (res.from === 'button') {
// 来自页面内分享按钮
console.log(res.target);
}
return {
title: this.shareParams.title, // 标题
path: this.shareParams.path, // 分享路径
imageUrl: '', // 分享图
desc: ''
};
},
onShareTimeline() {
return {
title: this.shareParams.title, // 标题
path: this.shareParams.path, // 分享路径
imageUrl: ''// 分享图
};
}
}
12-28
1523
1523
07-26
4610
4610
04-21
4852
4852
03-13
1万+
1万+
10-10
735
735
09-13

被折叠的 条评论
为什么被折叠?



