demo.vue 424 B

12345678910111213141516171819202122232425
  1. <template>
  2. <view>
  3. <view class="block">
  4. <button class="shareBtn" type="default" data-name="shareBtn" open-type="share">
  5. <image style='width:108rpx;height:108rpx;' src="@/static/imgs/shade.png" mode="aspectFill">
  6. </image>
  7. <view>分享微信好友</view>
  8. </button>
  9. </view>
  10. </view>
  11. </template>
  12. <script>
  13. export default {
  14. data() {
  15. return {
  16. };
  17. }
  18. }
  19. </script>
  20. <style lang="scss">
  21. </style>