mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 03:29:59 +08:00
384 B
384 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);