EmptyState.vue 493 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <view class="empty">
  3. <view class="empty-title">{{ title }}</view>
  4. <view v-if="description" class="empty-desc">{{ description }}</view>
  5. </view>
  6. </template>
  7. <script setup lang="ts">
  8. defineProps<{ title: string; description?: string }>()
  9. </script>
  10. <style scoped lang="scss">
  11. .empty {
  12. padding: 80rpx 32rpx;
  13. text-align: center;
  14. color: #8a94a6;
  15. }
  16. .empty-title {
  17. font-size: 30rpx;
  18. color: #4b5563;
  19. }
  20. .empty-desc {
  21. margin-top: 12rpx;
  22. font-size: 24rpx;
  23. }
  24. </style>