basic.vue 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <template>
  2. <el-row>
  3. <el-col :span="6">
  4. <el-statistic title="Daily active users" :value="268500" />
  5. </el-col>
  6. <el-col :span="6">
  7. <el-statistic :value="138">
  8. <template #title>
  9. <div style="display: inline-flex; align-items: center">
  10. Ratio of men to women
  11. <el-icon style="margin-left: 4px" :size="12">
  12. <Male />
  13. </el-icon>
  14. </div>
  15. </template>
  16. <template #suffix>/100</template>
  17. </el-statistic>
  18. </el-col>
  19. <el-col :span="6">
  20. <el-statistic title="Total Transactions" :value="172000" />
  21. </el-col>
  22. <el-col :span="6">
  23. <el-statistic title="Feedback number" :value="562">
  24. <template #suffix>
  25. <el-icon style="vertical-align: -0.125em">
  26. <ChatLineRound />
  27. </el-icon>
  28. </template>
  29. </el-statistic>
  30. </el-col>
  31. </el-row>
  32. </template>
  33. <script lang="ts" setup>
  34. import { ChatLineRound, Male } from '@element-plus/icons-vue'
  35. </script>
  36. <style scoped>
  37. .el-col {
  38. text-align: center;
  39. }
  40. </style>