12345678910111213141516171819202122232425 |
- <template>
- <view>
- <view class="block">
- <button class="shareBtn" type="default" data-name="shareBtn" open-type="share">
- <image style='width:108rpx;height:108rpx;' src="@/static/imgs/shade.png" mode="aspectFill">
- </image>
- <view>分享微信好友</view>
- </button>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- };
- }
- }
- </script>
- <style lang="scss">
- </style>
|