mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 00:09:39 +08:00
b4c67402e6
* feat: add loading prop for Statistic * feat: update statistic demo * feat: add style dependency * feat: replace loading component * feat: update doc of statistic * fix loading type * feat: add loading prop for Statistic * feat: update statistic demo * update api version Co-authored-by: lvpansen <pansen.lv@atzuche.com>
37 lines
621 B
Markdown
37 lines
621 B
Markdown
---
|
|
order: 0
|
|
title:
|
|
zh-CN: 基本
|
|
en-US: Basic
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
简单的展示。
|
|
|
|
## en-US
|
|
|
|
Simplest Usage.
|
|
|
|
```jsx
|
|
import { Statistic, Row, Col, Button } from 'antd';
|
|
|
|
ReactDOM.render(
|
|
<Row gutter={16}>
|
|
<Col span={12}>
|
|
<Statistic title="Active Users" value={112893} />
|
|
</Col>
|
|
<Col span={12}>
|
|
<Statistic title="Account Balance (CNY)" value={112893} precision={2} />
|
|
<Button style={{ marginTop: 16 }} type="primary">
|
|
Recharge
|
|
</Button>
|
|
</Col>
|
|
<Col span={12}>
|
|
<Statistic title="Active Users" value={112893} loading />
|
|
</Col>
|
|
</Row>,
|
|
mountNode,
|
|
);
|
|
```
|