mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-28 21:19:37 +08:00
383 B
383 B
order | title | ||||
---|---|---|---|---|---|
4 |
|
zh-CN
支持允许或者禁用清除。
en-US
Support set allow to clear star when click again.
import { Rate } from 'antd';
ReactDOM.render(
<div>
<Rate defaultValue={3} /> allowClear: true
<br />
<Rate allowClear={false} defaultValue={3} /> allowClear: false
</div>
, mountNode);