StatsOverview.vue 360 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: 14px;
  12. color: #999;
  13. }
  14. .stats-text strong {
  15. color: #f5a623;
  16. font-weight: 600;
  17. }
  18. </style>