index.vue 422 B

123456789101112131415161718192021222324
  1. <template>
  2. <u-empty
  3. :text="text"
  4. textSize="28rpx"
  5. width="208rpx"
  6. height="158rpx"
  7. mode="order"
  8. :icon="iconUrl"
  9. ></u-empty>
  10. </template>
  11. <script setup>
  12. // 定义组件属性
  13. const props = defineProps({
  14. text: {
  15. type: String,
  16. default: '暂无内容'
  17. },
  18. iconUrl: {
  19. type: String,
  20. default: 'https://oss.familydaf.cn/sxsnfile/20251218/d63619d9431343b7a6ef501027ffa156.png'
  21. }
  22. })
  23. </script>