CustomerService.vue 375 B

123456789101112131415161718192021
  1. <script setup></script>
  2. <template>
  3. <button open-type="contact" session-from class="contact">
  4. <slot>联系客服</slot>
  5. </button>
  6. </template>
  7. <style lang="scss" scoped>
  8. @import "@/uni.scss";
  9. .contact {
  10. color: $uni-primary;
  11. font-size: 28rpx;
  12. background: transparent;
  13. padding: 0;
  14. margin: 0;
  15. &::after {
  16. border: 0; // 或者 border: none;
  17. }
  18. }
  19. </style>