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

17 lines
247 B
Vue
Raw Normal View History

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