aircraft-pilot/mixin/share.js

15 lines
275 B
JavaScript
Raw Normal View History

2025-07-02 14:58:38 +08:00
export default {
onShareAppMessage(res) { //发送给朋友
return {
title: '自定义分享标题',
path: '/pages/star/index'
}
},
onShareTimeline(res) { //分享到朋友圈
return {
title: '自定义分享标题',
path: '/pages/star/index',
}
},
}