fix(Popup): opened event is emitted twice when duration is 0 (#11902)

* fix(Popup): duration 0s and enable lazyRender opened is executed twice

* fix(Popup): optimized code
This commit is contained in:
Zhousg 2023-05-28 16:18:54 +08:00 committed by GitHub
parent d9726883e6
commit 6177bf00a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -172,7 +172,14 @@ export default defineComponent({
}
};
const onOpened = () => emit('opened');
// see: https://github.com/youzan/vant/issues/11901
let timer: ReturnType<typeof setTimeout> | null;
const onOpened = () => {
if (timer) clearTimeout(timer);
timer = setTimeout(() => {
emit('opened');
});
};
const onClosed = () => emit('closed');
const onKeydown = (event: KeyboardEvent) => emit('keydown', event);