cm-button.vue 902 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <template>
  2. <button
  3. class="btn flex-align-center"
  4. :class="customClass"
  5. :open-type="openType"
  6. :style="{ height: height * 2 + 'rpx', borderRadius: height + 'rpx' }"
  7. @click="click"
  8. >
  9. <slot></slot>
  10. </button>
  11. </template>
  12. <script>
  13. export default {
  14. props: {
  15. height: {
  16. type: Number,
  17. default: 32
  18. },
  19. customClass: String,
  20. openType: String
  21. },
  22. methods: {
  23. click() {
  24. this.$emit('click')
  25. }
  26. }
  27. }
  28. </script>
  29. <style scoped>
  30. .btn {
  31. background: #fec433;
  32. border-radius: 50rpx;
  33. text-align: center;
  34. color: #000;
  35. font-size: 28rpx;
  36. width: 425rpx;
  37. border: none;
  38. box-shadow: none;
  39. }
  40. .btn::after {
  41. display: none;
  42. }
  43. </style>