ant-design-vue
Version:
An enterprise-class UI design language and Vue-based implementation
24 lines (22 loc) • 623 B
JavaScript
import _extends from 'babel-runtime/helpers/extends';
import VcSelect, { SelectProps } from '../select';
import { getOptionProps, filterEmpty, getListeners } from '../_util/props-util';
export default {
props: _extends({}, SelectProps),
Option: VcSelect.Option,
render: function render() {
var h = arguments[0];
var selectOptionsProps = getOptionProps(this);
var selelctProps = {
props: _extends({}, selectOptionsProps, {
size: 'small'
}),
on: getListeners(this)
};
return h(
VcSelect,
selelctProps,
[filterEmpty(this.$slots['default'])]
);
}
};