mirror of
https://github.com/ant-design/ant-design.git
synced 2025-01-21 00:14: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
47 lines
957 B
Markdown
47 lines
957 B
Markdown
---
|
|
order: 0
|
|
title:
|
|
zh-CN: 基本使用
|
|
en-US: Basic Usage
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
基本使用。
|
|
|
|
## en-US
|
|
|
|
Basic Usage.
|
|
|
|
```jsx
|
|
import { Select } from 'antd';
|
|
|
|
const { Option } = Select;
|
|
|
|
function handleChange(value) {
|
|
console.log(`selected ${value}`);
|
|
}
|
|
|
|
export default () => (
|
|
<>
|
|
<Select 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 defaultValue="lucy" style={{ width: 120 }} disabled>
|
|
<Option value="lucy">Lucy</Option>
|
|
</Select>
|
|
<Select defaultValue="lucy" style={{ width: 120 }} loading>
|
|
<Option value="lucy">Lucy</Option>
|
|
</Select>
|
|
<Select defaultValue="lucy" style={{ width: 120 }} allowClear>
|
|
<Option value="lucy">Lucy</Option>
|
|
</Select>
|
|
</>
|
|
);
|
|
```
|