25 lines
475 B
TypeScript
25 lines
475 B
TypeScript
|
|
export default {
|
|
data() {
|
|
return {
|
|
shareTitle: '我在愈心谷等你哦~',
|
|
sharePath: '/pages/index/index'
|
|
};
|
|
},
|
|
methods: {
|
|
onShareAppMessage() {
|
|
return {
|
|
title: this.shareTitle,
|
|
path: this.sharePath,
|
|
imageUrl: '../static/main/banner.png'
|
|
};
|
|
},
|
|
onShareTimeline() {
|
|
return {
|
|
title: '快来体验一下吧~',
|
|
query: 'id=1',
|
|
imageUrl: '../static/main/banner.png'
|
|
};
|
|
}
|
|
}
|
|
}; |