mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 11:40:04 +08:00
471 B
471 B
order | title | ||||
---|---|---|---|---|---|
4 |
|
zh-CN
带有搜索按钮的输入框,2.5.0
时新增。
en-US
Example of creating a search box by grouping a standard input with a search button, added in 2.5.0
.
import { Input } from 'antd';
const Search = Input.Search;
ReactDOM.render(
<Search
placeholder="input search text"
style={{ width: 200 }}
onSearch={value => console.log(value)}
/>
, mountNode);