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.

41 lines
594 B

---
order: 1
title:
zh-CN: 不可用
en-US: Disabled
---
## zh-CN
9 years ago
Switch 失效状态。
## en-US
Disabled state of `Switch`.
````jsx
import { Switch, Button } from 'antd';
class App extends React.Component {
state = {
disabled: true,
}
toggle = () => {
this.setState({
disabled: !this.state.disabled,
});
}
render() {
return (
<div>
<Switch disabled={this.state.disabled} />
<br />
<Button type="primary" onClick={this.toggle}>Toggle disabled</Button>
</div>
);
}
}
ReactDOM.render(<App />, mountNode);
````