Skip to content

Commit 36df585

Browse files
committed
fix: menu hide when quicky hover
1 parent 39e7b8f commit 36df585

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

components/vc-trigger/Popup/PopupInner.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,8 @@ export default defineComponent({
150150
zIndex,
151151
opacity:
152152
statusValue === 'motion' || statusValue === 'stable' || !visible.value ? null : 0,
153-
pointerEvents: statusValue === 'stable' ? null : 'none',
153+
// pointerEvents: statusValue === 'stable' ? null : 'none',
154+
pointerEvents: !visible.value && statusValue !== 'stable' ? 'none' : null,
154155
},
155156
attrs.style as CSSProperties,
156157
];

0 commit comments

Comments
 (0)