mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 03:29:59 +08:00
702 B
702 B
order | title | ||||
---|---|---|---|---|---|
5 |
|
zh-CN
用 OptGroup
进行选项分组。
en-US
Using OptGroup
to group the options.
import { Select } from 'antd';
const Option = Select.Option;
const OptGroup = Select.OptGroup;
function handleChange(value) {
console.log(`selected ${value}`);
}
ReactDOM.render(
<Select
defaultValue="lucy"
style={{ width: 200 }}
onChange={handleChange}
>
<OptGroup label="Manager">
<Option value="jack">Jack</Option>
<Option value="lucy">Lucy</Option>
</OptGroup>
<OptGroup label="Engineer">
<Option value="Yiminghe">yiminghe</Option>
</OptGroup>
</Select>
, mountNode);