index.vue 343 B

123456789101112131415161718192021222324
  1. <template>
  2. <u-empty
  3. :text="text"
  4. textSize="26rpx"
  5. width="332rpx"
  6. height="332rpx"
  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: ''
  21. }
  22. })
  23. </script>