ant-design/components/select/demo/suffix.md

50 lines
898 B
Markdown
Raw Normal View History

2018-09-15 00:00:16 +08:00
---
order: 20
debug: true
title:
zh-CN: 后缀图标
en-US: Suffix
---
## zh-CN
基本使用。
## en-US
Basic Usage.
2019-05-07 14:57:32 +08:00
```jsx
2018-09-15 00:00:16 +08:00
import { Select, Icon } from 'antd';
const smileIcon = <Icon type="smile" />;
const mehIcon = <Icon type="meh" />;
const Option = Select.Option;
function handleChange(value) {
console.log(`selected ${value}`);
}
ReactDOM.render(
<div>
2019-05-07 14:57:32 +08:00
<Select
suffixIcon={smileIcon}
defaultValue="lucy"
style={{ width: 120 }}
onChange={handleChange}
>
2018-09-15 00:00:16 +08:00
<Option value="jack">Jack</Option>
<Option value="lucy">Lucy</Option>
2019-05-07 14:57:32 +08:00
<Option value="disabled" disabled>
Disabled
</Option>
2018-09-15 00:00:16 +08:00
<Option value="Yiminghe">yiminghe</Option>
</Select>
2018-09-16 19:43:53 +08:00
<Select suffixIcon={mehIcon} defaultValue="lucy" style={{ width: 120 }} disabled>
2018-09-15 00:00:16 +08:00
<Option value="lucy">Lucy</Option>
</Select>
</div>,
2019-05-07 14:57:32 +08:00
mountNode,
2018-11-28 15:00:03 +08:00
);
2019-05-07 14:57:32 +08:00
```