ant-design-vue/components/table/FilterDropdownMenuWrapper.jsx
2018-03-29 22:08:04 +08:00

17 lines
247 B
Vue

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