ant-design/components/switch/demo/disabled.md
2019-05-07 14:57:32 +08:00

631 B

order title
1
zh-CN en-US
不可用 Disabled

zh-CN

Switch 失效状态。

en-US

Disabled state of Switch.

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} defaultChecked />
        <br />
        <Button type="primary" onClick={this.toggle}>
          Toggle disabled
        </Button>
      </div>
    );
  }
}

ReactDOM.render(<App />, mountNode);