index.vue 521 B

123456789101112131415161718192021222324252627
  1. <!-- 分享组件 -->
  2. <template name="share">
  3. <view
  4. style="display: flex;align-items: center;justify-content: center;width: 160upx;height: 70upx;background-color: #fff2dc;border-radius: 70upx 0 0 70upx;">
  5. <image style="width: 36upx;height: 36upx;" src="/static/share_orange.png"></image>
  6. <view style="color: #ff663d;margin-left: 16upx;">分享</view>
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. name: "share",
  12. data() {
  13. return {
  14. };
  15. },
  16. props: {},
  17. created() {}
  18. }
  19. </script>
  20. <style>
  21. </style>