UNPKG

ant-design-vue

Version:

An enterprise-class UI design language and Vue-based implementation

29 lines (27 loc) 531 B
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports['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']] ); } };