ant-design-vue/components/pagination/MiniSelect.jsx

20 lines
465 B
Vue
Raw Normal View History

2019-01-12 03:33:27 +00:00
import VcSelect, { SelectProps } from '../select';
import { getOptionProps, getSlot } from '../_util/props-util';
2018-03-06 07:40:42 +00:00
export default {
inheritAttrs: false,
2018-03-06 07:40:42 +00:00
props: {
...SelectProps,
},
Option: VcSelect.Option,
2019-01-12 03:33:27 +00:00
render() {
const selectOptionsProps = getOptionProps(this);
2018-03-06 07:40:42 +00:00
const selelctProps = {
...selectOptionsProps,
size: 'small',
...this.$attrs,
2019-01-12 03:33:27 +00:00
};
return <VcSelect {...selelctProps}>{getSlot(this)}</VcSelect>;
2018-03-06 07:40:42 +00:00
},
2019-01-12 03:33:27 +00:00
};