We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2cdb69f commit 502c11cCopy full SHA for 502c11c
components/vc-trigger/Trigger.tsx
@@ -215,7 +215,9 @@ export default defineComponent({
215
) {
216
return;
217
}
218
- this.delaySetPopupVisible(false, this.$props.mouseLeaveDelay);
+ if (this.isMouseLeaveToHide()) {
219
+ this.delaySetPopupVisible(false, this.$props.mouseLeaveDelay);
220
+ }
221
const { vcTriggerContext = {} } = this;
222
if (vcTriggerContext.onPopupMouseleave) {
223
vcTriggerContext.onPopupMouseleave(e);
0 commit comments