mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 19:50:05 +08:00
559 B
559 B
order | title |
---|---|
1 | 不可用 |
Switch 失效状态。
import { Switch, Button } from 'antd';
const Test = React.createClass({
getInitialState() {
return {
disabled: true
};
},
toggle() {
this.setState({
disabled: !this.state.disabled
});
},
render() {
return (
<div>
<Switch disabled={this.state.disabled} />
<br />
<br />
<Button type="primary" onClick={this.toggle}>Toggle disabled</Button>
</div>
);
}
});
ReactDOM.render(<Test />, mountNode);