mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-04 21:18:01 +08:00
837ec0cb07
* spin demos translation * Progress demo translation
553 B
553 B
order | title | ||||
---|---|---|---|---|---|
6 |
|
zh-CN
format
属性指定格式。
en-US
You can custom text format by setting format
.
import { Progress } from 'antd';
ReactDOM.render(
<div>
<Progress type="circle" percent={75} format={percent => `${percent / 10.0} In Progress`} />
<Progress type="circle" percent={100} format={() => 'Complete'} />
</div>
, mountNode);