You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
383 B

---
order: 4
title:
zh-CN: 清除
en-US: Clear star
---
## zh-CN
支持允许或者禁用清除。
## en-US
Support set allow to clear star when click again.
````jsx
import { Rate } from 'antd';
ReactDOM.render(
<div>
<Rate defaultValue={3} /> allowClear: true
<br />
<Rate allowClear={false} defaultValue={3} /> allowClear: false
</div>
, mountNode);
````