mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-02 20:19:44 +08:00
6776bb8916
* docs: update demo * chore: add script * test: fix demo test * docs: convert demos * chore: move script * test: remove react-dom import * chore: update deps * docs: update riddle js * test: fix image test * docs: fix riddle demo
931 B
931 B
order | debug | title | ||||
---|---|---|---|---|---|---|
20 | true |
|
zh-CN
基本使用。
en-US
Basic Usage.
import { Select } from 'antd';
import { SmileOutlined, MehOutlined } from '@ant-design/icons';
const smileIcon = <SmileOutlined />;
const mehIcon = <MehOutlined />;
const { Option } = Select;
function handleChange(value) {
console.log(`selected ${value}`);
}
export default () => (
<>
<Select
suffixIcon={smileIcon}
defaultValue="lucy"
style={{ width: 120 }}
onChange={handleChange}
>
<Option value="jack">Jack</Option>
<Option value="lucy">Lucy</Option>
<Option value="disabled" disabled>
Disabled
</Option>
<Option value="Yiminghe">yiminghe</Option>
</Select>
<Select suffixIcon={mehIcon} defaultValue="lucy" style={{ width: 120 }} disabled>
<Option value="lucy">Lucy</Option>
</Select>
</>
);