mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-30 06:09:34 +08:00
31 lines
646 B
Markdown
31 lines
646 B
Markdown
# 基本使用
|
|
|
|
- order: 0
|
|
|
|
基本使用。
|
|
|
|
---
|
|
|
|
````jsx
|
|
import { Select } from 'antd';
|
|
const Option = Select.Option;
|
|
|
|
function handleChange(value) {
|
|
console.log(`selected ${value}`);
|
|
}
|
|
|
|
ReactDOM.render(
|
|
<div>
|
|
<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>
|
|
</div>
|
|
, mountNode);
|
|
````
|