StatusTip.vue 497 B

123456789101112131415
  1. <script setup lang="ts">
  2. import { statusTipProps } from 'wot-design-uni/components/wd-status-tip/types'
  3. const props = defineProps({ ...statusTipProps, image: { type: String, default: '' }, imageSize: { type: String, default: '248rpx' } })
  4. </script>
  5. <template>
  6. <wd-status-tip v-bind="props">
  7. <template #image>
  8. <i class="iconfont text-[var(--them-color)]" :style="{ fontSize: imageSize }">&#xe659;</i>
  9. </template>
  10. </wd-status-tip>
  11. </template>
  12. <style lang="scss" scoped></style>