mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-16 03:18:11 +00:00
470 B
470 B
order, title
| 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} />
<span className="ant-rate-text">allowClear: true</span>
<br />
<Rate allowClear={false} defaultValue={3} />
<span className="ant-rate-text">allowClear: false</span>
</div>,
mountNode,
);