We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39e7b8f commit 36df585Copy full SHA for 36df585
components/vc-trigger/Popup/PopupInner.tsx
@@ -150,7 +150,8 @@ export default defineComponent({
150
zIndex,
151
opacity:
152
statusValue === 'motion' || statusValue === 'stable' || !visible.value ? null : 0,
153
- pointerEvents: statusValue === 'stable' ? null : 'none',
+ // pointerEvents: statusValue === 'stable' ? null : 'none',
154
+ pointerEvents: !visible.value && statusValue !== 'stable' ? 'none' : null,
155
},
156
attrs.style as CSSProperties,
157
];
0 commit comments