赞
踩
<script> export default { methods: {}, // 发送给朋友 onShareAppMessage(res) { if (res.from === "button") { // 来自页面内分享按钮 console.log(res.target); } return { title: "文本", //分享的名称 path: "pages/demo/index", // 点击链接进入的页面 mpId: "xxxxxxxxxxxxxxxx", //此处配置微信小程序的AppId }; }, //分享到朋友圈 onShareTimeline(res) { return { title: "文本", type: 0, summary: "", }; }, }; </script>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。