| 123456789101112131415161718192021222324 |
- <template>
- <u-empty
- :text="text"
- textSize="26rpx"
- width="332rpx"
- height="332rpx"
- mode="order"
- :icon="iconUrl"
- ></u-empty>
- </template>
- <script setup>
- // 定义组件属性
- const props = defineProps({
- text: {
- type: String,
- default: '暂无数据'
- },
- iconUrl: {
- type: String,
- default: ''
- }
- })
- </script>
|