| 1234567891011121314151617181920 |
- <template>
- <div class="stats-overview">
- <span class="stats-text">找到 <strong>{{ total }}</strong> 个相关文档</span>
- </div>
- </template>
- <script setup lang="ts">
- defineProps<{ total: number }>()
- </script>
- <style scoped>
- .stats-overview {
- font-size: 14px;
- color: #999;
- }
- .stats-text strong {
- color: #f5a623;
- font-weight: 600;
- }
- </style>
|