You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
593 B

export default {
data() {
return {}
},
//1.配置发送给朋友
onShareAppMessage() {
return {
title: '换电云', //分享的标题
path: 'pages/index/index', //点击分享链接之后进入的页面路径
imageUrl: '' //分享发送的链接图片地址
};
},
//2.配置分享到朋友圈
onShareTimeline(){
return{
title: '换电云', //分享的标题
query: 'pages/index/index', //点击分享链接之后进入的页面路径
imageUrl: '' //分享发送的链接图片地址
}
},
}