| 123456789101112131415161718192021222324 |
- <template>
- <u-empty
- :text="text"
- textSize="28rpx"
- width="208rpx"
- height="158rpx"
- mode="order"
- :icon="iconUrl"
- ></u-empty>
- </template>
- <script setup>
- // 定义组件属性
- const props = defineProps({
- text: {
- type: String,
- default: '暂无内容'
- },
- iconUrl: {
- type: String,
- default: 'https://sxsn.ringzle.com/happytree-admin/profile/2025/12/16/a73ba198-7759-4bc0-96c6-617fe0d05a69.png'
- }
- })
- </script>
|