NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/ant-design-vue/es/pagination/MiniSelect.js
2023-09-14 14:47:11 +08:00

24 lines
623 B
Java

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'])]
);
}
};