| 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://oss.familydaf.cn/sxsnfile/20251218/d63619d9431343b7a6ef501027ffa156.png'
- }
- })
- </script>
|