uni-app按钮分享
<template>
<view>
<button open-type="share">按钮分享至好友</button>
</view>
</template>
<script>
export default {
onShareAppMessage(res) {
return {
title: '分享标题',
desc: '自定义分享描述',
// 分享图片地址
imageUrl: 'https://vkceyugu.cdn.bspapp.com/VKCEYUGU-uni-app-doc/d8590190-4f28-11eb-b680-7980c8a877b8.png',
// 本地页面(请使用全路径)。
path: '/pages/index/index?id=123',
}
}
}
</script>
<style>
</style>