Skip to content

Commit e9f8ea7

Browse files
authored
fix: popover Mask.tsx v-if #8252 (#8253)
1 parent 27acc9a commit e9f8ea7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/vc-trigger/Popup/Mask.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export default function Mask(props: MaskProps) {
3030

3131
return (
3232
<Transition appear {...motion}>
33-
<div v-if={visible} style={{ zIndex }} class={`${prefixCls}-mask`} />
33+
<div v-show={visible} style={{ zIndex }} class={`${prefixCls}-mask`} />
3434
</Transition>
3535
);
3636
}

0 commit comments

Comments
 (0)