index.vue 770 Bytes
<template>
  <div class="mine-statistic">
    <div class="mine-statistic__content">
      <span class="text-danger num mr10">{{content}}</span>
      <span>{{unit}}</span>
    </div>
    <div class="mine-statistic__head">{{title}}</div>
  </div>
</template>

<script setup lang="ts">
  let props = defineProps({
    title: {
      default: "",
      type: String
    },
    content: {
      default: "",
      type: String
    },
    unit: {
      default: "",
      type: String
    }
  })
</script>

<style scoped lang="scss">
  .mine-statistic {
    text-align: center;
    .mine-statistic__content {
      font-size: 14px;
      .num{
        font-size: 20px;
      }
    }
    .mine-statistic__head {
      color: #606266;
      font-size: 12px;
    }
  }
</style>