diff --git a/components/tooltip/Tooltip.jsx b/components/tooltip/Tooltip.jsx index 1cb160834..e22d334ad 100644 --- a/components/tooltip/Tooltip.jsx +++ b/components/tooltip/Tooltip.jsx @@ -26,7 +26,7 @@ export default { }, model: { prop: 'visible', - event: 'change', + event: 'visibleChange', }, data () { return { @@ -44,7 +44,7 @@ export default { this.sVisible = this.isNoTitle() ? false : visible } if (!this.isNoTitle()) { - this.$emit('change', visible) + this.$emit('visibleChange', visible) } },