mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 12:10:06 +08:00
31 lines
478 B
Markdown
31 lines
478 B
Markdown
---
|
|
order: 5
|
|
title:
|
|
zh-CN: 搜索框 loading
|
|
en-US: Search box with loading
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
用于 `onSearch` 的时候展示 `loading`。
|
|
|
|
## en-US
|
|
|
|
Search loading when onSearch.
|
|
|
|
```jsx
|
|
import { Input } from 'antd';
|
|
|
|
const { Search } = Input;
|
|
|
|
ReactDOM.render(
|
|
<div>
|
|
<Search placeholder="input search loading deault" loading />
|
|
<br />
|
|
<br />
|
|
<Search placeholder="input search loading with enterButton" loading enterButton />
|
|
</div>,
|
|
mountNode,
|
|
);
|
|
```
|