mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-01 11:38:36 +08:00
17 lines
247 B
Vue
17 lines
247 B
Vue
|
|
export default {
|
|
methods: {
|
|
handelClick (e) {
|
|
this.$emit('click', e)
|
|
},
|
|
},
|
|
render () {
|
|
const { $slots, handelClick } = this
|
|
return (
|
|
<div onClick={handelClick}>
|
|
{$slots.default}
|
|
</div>
|
|
)
|
|
},
|
|
}
|