123456789101112131415161718192021222324252627282930 |
- <script setup name="Empty">
- defineProps({
- text: {
- type: String,
- default: "敬请期待",
- },
- });
- </script>
- <template>
- <view class="empty">
- <view>{{ text }}</view>
- </view>
- </template>
- <style lang="scss" scoped>
- .empty {
- flex: 1;
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- flex-direction: column;
- gap: 20rpx;
- font-family: PingFang SC, PingFang SC;
- font-weight: 500;
- font-size: 28rpx;
- color: #999999;
- }
- </style>
|