Empty.vue 391 B

1234567891011121314151617181920212223
  1. <script setup></script>
  2. <template>
  3. <view class="empty">
  4. <view>敬请期待</view>
  5. </view>
  6. </template>
  7. <style lang="scss" scoped>
  8. .empty {
  9. flex: 1;
  10. width: 100%;
  11. display: flex;
  12. align-items: center;
  13. justify-content: center;
  14. flex-direction: column;
  15. gap: 20rpx;
  16. font-family: PingFang SC, PingFang SC;
  17. font-weight: 500;
  18. font-size: 28rpx;
  19. color: #999999;
  20. }
  21. </style>