ant-design/components/input/demo/allowClear.md
2019-06-18 13:08:36 +02:00

432 B

order title
11
zh-CN en-US
带移除图标 With clear icon

zh-CN

带移除图标的输入框,点击图标删除所有内容。

en-US

Input box with the remove icon, click the icon to delete everything.

import { Input } from 'antd';

const onChange = e => {
  console.log(e);
};

ReactDOM.render(
  <Input placeholder="input with clear icon" allowClear onChange={onChange} />,
  mountNode,
);