mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-15 18:58:11 +00:00
589 B
589 B
order, title
| order | title | ||||
|---|---|---|---|---|---|
| 11 |
|
zh-CN
带移除图标的输入框,点击图标删除所有内容。
en-US
Input box with the remove icon, click the icon to delete everything.
import { Input } from 'antd';
const { TextArea } = Input;
const onChange = e => {
console.log(e);
};
ReactDOM.render(
<div>
<Input placeholder="input with clear icon" allowClear onChange={onChange} />
<br />
<br />
<TextArea placeholder="textarea with clear icon" allowClear onChange={onChange} />
</div>,
mountNode,
);