mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-29 13:47:02 +08:00
40 lines
574 B
Markdown
40 lines
574 B
Markdown
---
|
|
order: 1
|
|
title:
|
|
zh-CN: 不可用
|
|
en-US: Disabled
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
Switch 失效状态。
|
|
|
|
## en-US
|
|
|
|
Disabled state of `Switch`.
|
|
|
|
```tsx
|
|
import { Button, Switch } from 'antd';
|
|
import React, { useState } from 'react';
|
|
|
|
const App: React.FC = () => {
|
|
const [disabled, setDisabled] = useState(true);
|
|
|
|
const toggle = () => {
|
|
setDisabled(!disabled);
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<Switch disabled={disabled} defaultChecked />
|
|
<br />
|
|
<Button type="primary" onClick={toggle}>
|
|
Toggle disabled
|
|
</Button>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default App;
|
|
```
|