mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
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:
parent
d9726883e6
commit
6177bf00a2
@ -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);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user