ant-design-vue
Version:
An enterprise-class UI design language and Vue-based implementation
28 lines (26 loc) • 494 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports["default"] = {
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"]]
);
}
};