fix(Popup): should not auto close on deactivated if not using teleport (#10706)

This commit is contained in:
neverland 2022-06-12 12:25:23 +08:00 committed by GitHub
parent 88d44cf4ea
commit 8ee4080d69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -264,7 +264,8 @@ export default defineComponent({
}); });
onDeactivated(() => { onDeactivated(() => {
if (props.show) { // teleported popup should be closed when deactivated
if (props.show && props.teleport) {
close(); close();
shouldReopen = true; shouldReopen = true;
} }