21 lines
498 B
Vue
21 lines
498 B
Vue
import VcSelect, { SelectProps } from '../select';
|
|
import { getOptionProps, filterEmpty } from '../_util/props-util';
|
|
|
|
export default {
|
|
props: {
|
|
...SelectProps,
|
|
},
|
|
Option: VcSelect.Option,
|
|
render() {
|
|
const selectOptionsProps = getOptionProps(this);
|
|
const selelctProps = {
|
|
props: {
|
|
...selectOptionsProps,
|
|
size: 'small',
|
|
},
|
|
on: this.$listeners,
|
|
};
|
|
return <VcSelect {...selelctProps}>{filterEmpty(this.$slots.default)}</VcSelect>;
|
|
},
|
|
};
|