| 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: 13px;
- color: #909399;
- margin-bottom: 8px;
- }
- .stats-text strong {
- color: #e6a23c;
- }
- </style>
|