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.

18 lines
287 B

# 不可用
10 years ago
- order: 1
checkbox 不可用。
10 years ago
---
````jsx
import { Checkbox } from 'antd';
10 years ago
9 years ago
ReactDOM.render(<div>
<Checkbox defaultChecked={false} disabled />
<br />
<Checkbox defaultChecked disabled />
</div>, document.getElementById('components-checkbox-demo-disable'));
10 years ago
````