export default { methods: { handelClick(e) { e.stopPropagation(); //this.$emit('click', e); }, }, render() { const { $slots, handelClick } = this; return
{$slots.default}
; }, };