ant-design/components/switch/demo/loading.md

30 lines
372 B
Markdown
Raw Normal View History

2017-12-02 15:57:02 +08:00
---
order: 4
title:
zh-CN: 加载中
en-US: Loading
---
## zh-CN
标识开关操作仍在执行中。
## en-US
Mark a pending state of switch.
```tsx
2017-12-02 15:57:02 +08:00
import { Switch } from 'antd';
2022-05-23 14:37:16 +08:00
import React from 'react';
2017-12-02 15:57:02 +08:00
const App: React.FC = () => (
<>
2017-12-02 15:57:02 +08:00
<Switch loading defaultChecked />
<br />
<Switch size="small" loading />
</>
2018-11-28 15:00:03 +08:00
);
export default App;
2019-05-07 14:57:32 +08:00
```