You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design-vue/components/vc-select/demo/optgroup.vue

44 lines
985 B

7 years ago
<script>
import Select, { Option, OptGroup } from '../index'
import '../assets/index.less'
export default {
methods: {
onChange (value, options) {
console.log(`selected ${value}`)
},
},
render () {
return (<div>
<h2>Select OptGroup</h2>
<div style={{ width: '300px' }}>
<Select
placeholder='placeholder'
defaultValue='lucy'
showSearch={false}
style={{ width: '500px' }}
onChange={this.onChange}
>
<OptGroup label='manager'>
<Option value='jack'>
<b
style={{
color: 'red',
}}
>
jack
</b>
</Option>
<Option value='lucy'>lucy</Option>
</OptGroup>
<OptGroup label='engineer'>
<Option value='yiminghe'>yiminghe</Option>
</OptGroup>
</Select>
</div>
</div>)
},
}
</script>