ant-design-vue/components/table/FilterDropdownMenuWrapper.jsx

12 lines
218 B
Vue
Raw Normal View History

2018-03-29 14:08:04 +00:00
export default {
methods: {
2019-01-12 03:33:27 +00:00
handelClick(e) {
this.$emit('click', e);
2018-03-29 14:08:04 +00:00
},
},
2019-01-12 03:33:27 +00:00
render() {
const { $slots, handelClick } = this;
return <div onClick={handelClick}>{$slots.default}</div>;
2018-03-29 14:08:04 +00:00
},
2019-01-12 03:33:27 +00:00
};