fix: popover Mask.tsx v-if #8252 (#8253)

main
HeyXml 2025-07-09 11:45:52 +08:00 committed by GitHub
parent 27acc9a80e
commit e9f8ea7903
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ export default function Mask(props: MaskProps) {
return (
<Transition appear {...motion}>
<div v-if={visible} style={{ zIndex }} class={`${prefixCls}-mask`} />
<div v-show={visible} style={{ zIndex }} class={`${prefixCls}-mask`} />
</Transition>
);
}