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
313 B

9 years ago
# 不可用
- order: 1
Radio 不可用。
---
````jsx
var Radio = antd.Radio;
var container = document.getElementById('components-radio-demo-disable');
React.render(<div>
<Radio defaultChecked={false} disabled={true}/> &nbsp;&nbsp;
<Radio defaultChecked={true} disabled={true}/>
</div>, container);
````