ant-design-vue/components/statistic/demo/card.md

33 lines
578 B
Markdown
Raw Normal View History

2019-05-25 09:18:04 +00:00
<cn>
#### 在卡片中使用
在卡片中展示统计数值。
</cn>
<us>
#### In Card
Display statistic data in Card.
</us>
```html
<template>
<div>
<a-card style="padding: 30px">
<a-statistic
title="Feedback"
:value="1128"
style="margin-right: 50px"
>
<a-icon slot="prefix" type="like" />
</a-statistic>
<a-statistic
title="Unmerged"
:value="1234567890"
valueClass="demo-class"
>
<span slot="suffix"> / 100</span>
</a-statistic>
</a-card>
</div>
</template>
```