You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design/components/checkbox/demo/disable.md

18 lines
237 B
Markdown

# 不可用
- order: 1
checkbox 不可用。
---
````jsx
import { Checkbox } from 'antd';
ReactDOM.render(<div>
<Checkbox defaultChecked={false} disabled />
<br />
<Checkbox defaultChecked disabled />
</div>, mountNode);
````