index.vue 443 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://sxsn.ringzle.com/happytree-admin/profile/2025/12/16/a73ba198-7759-4bc0-96c6-617fe0d05a69.png'
  21. }
  22. })
  23. </script>