ant-design/components/switch/demo/loading.md
2022-05-23 14:37:16 +08:00

30 lines
372 B
Markdown

---
order: 4
title:
zh-CN: 加载中
en-US: Loading
---
## zh-CN
标识开关操作仍在执行中。
## en-US
Mark a pending state of switch.
```tsx
import { Switch } from 'antd';
import React from 'react';
const App: React.FC = () => (
<>
<Switch loading defaultChecked />
<br />
<Switch size="small" loading />
</>
);
export default App;
```