ant-design-vue
Version:
An enterprise-class UI design language and Vue-based implementation
24 lines (23 loc) • 445 B
JavaScript
export default {
name: 'FilterDropdownMenuWrapper',
methods: {
handelClick: function handelClick(e) {
e.stopPropagation();
//this.$emit('click', e);
}
},
render: function render() {
var h = arguments[0];
var $slots = this.$slots,
handelClick = this.handelClick;
return h(
'div',
{
on: {
'click': handelClick
}
},
[$slots['default']]
);
}
};