card.vue 305 B

12345678910111213141516
  1. <script lang="ts" setup>
  2. defineProps({
  3. customClass: {
  4. type: String,
  5. default: () => '',
  6. },
  7. })
  8. </script>
  9. <template>
  10. <view
  11. class="rounded-2xl bg-white shadow-[0_16rpx_20rpx_-10rpx_rgba(0,0,0,0.05)] p-3.5 overflow-hidden"
  12. :class="customClass"
  13. >
  14. <slot></slot>
  15. </view>
  16. </template>