You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design-vue/components/statistic/demo/card.md

1.1 KiB

#### 在卡片中使用 在卡片中展示统计数值。 #### In Card Display statistic data in Card.
<template>
  <div style="background: #ECECEC; padding: 30px">
    <a-row :gutter="16">
      <a-col :span="12">
        <a-card>
          <a-statistic
            title="Feedback"
            :value="11.28"
            :precision="2"
            suffix="%"
            :valueStyle="{color: '#3f8600'}"
            style="margin-right: 50px"
          >
            <template v-slot:prefix>
                <a-icon type="arrow-up" />
              </template>
          </a-statistic>
        </a-card>
      </a-col>
      <a-col :span="12">
        <a-card>
          <a-statistic
              title="Idle"
              :value="9.3"
              :precision="2"
              suffix="%"
              valueClass="demo-class"
              :valueStyle="{ color: '#cf1322' }"
            >
              <template v-slot:prefix>
                <a-icon type="arrow-down" />
              </template>
            </a-statistic>
        </a-card>
      </a-col>
    </a-row>
  </div>
</template>