ant-design-vue/components/table/FilterDropdownMenuWrapper.jsx
2019-09-23 08:38:54 +08:00

13 lines
247 B
Vue

export default {
methods: {
handelClick(e) {
e.stopPropagation();
//this.$emit('click', e);
},
},
render() {
const { $slots, handelClick } = this;
return <div onClick={handelClick}>{$slots.default}</div>;
},
};