mirror of
https://github.com/wahyd4/ant-design.git
synced 2026-08-11 05:46:22 +10:00
439 B
439 B
order, title
| order | title |
|---|---|
| 6 | 自定义文字格式 |
format 属性指定格式。
import { Progress } from 'antd';
ReactDOM.render(
<div>
<Progress type="circle" percent={75} format={percent => `${percent / 10.0}折` } />
<Progress type="circle" percent={100} format={() => '成功'} />
</div>
, mountNode);