19 lines
514 B
Vue
19 lines
514 B
Vue
import { defineComponent } from 'vue';
|
|
import VcSelect, { SelectProps } from '../select';
|
|
import { getOptionProps, getSlot } from '../_util/props-util';
|
|
|
|
export default defineComponent({
|
|
inheritAttrs: false,
|
|
props: SelectProps(),
|
|
Option: VcSelect.Option,
|
|
render() {
|
|
const selectOptionsProps = getOptionProps(this);
|
|
const selelctProps: any = {
|
|
...selectOptionsProps,
|
|
size: 'small',
|
|
...this.$attrs,
|
|
};
|
|
return <VcSelect {...selelctProps}>{getSlot(this)}</VcSelect>;
|
|
},
|
|
});
|