StatsOverview.vue 365 B

1234567891011121314151617181920
  1. <template>
  2. <div class="stats-overview">
  3. <span class="stats-text">找到 <strong>{{ total }}</strong> 个相关文档</span>
  4. </div>
  5. </template>
  6. <script setup lang="ts">
  7. defineProps<{ total: number }>()
  8. </script>
  9. <style scoped>
  10. .stats-overview {
  11. font-size: 13px;
  12. color: #909399;
  13. margin-bottom: 8px;
  14. }
  15. .stats-text strong {
  16. color: #e6a23c;
  17. }
  18. </style>