mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix(Popup): close event emiited twice (#10132)
This commit is contained in:
parent
9c16f4240a
commit
7831553bee
@ -213,10 +213,11 @@ export default defineComponent({
|
||||
|
||||
watch(
|
||||
() => props.show,
|
||||
(value) => {
|
||||
if (value) {
|
||||
(show) => {
|
||||
if (show && !opened) {
|
||||
open();
|
||||
} else {
|
||||
}
|
||||
if (!show && opened) {
|
||||
opened = false;
|
||||
emit('close');
|
||||
}
|
||||
|
@ -129,6 +129,22 @@ test('should emit close event when show prop is set to false', async () => {
|
||||
expect(onClose).toHaveBeenCalledTimes(1);
|
||||
});
|
||||
|
||||
test('should emit close event after clicking the overlay', async () => {
|
||||
const onClose = jest.fn();
|
||||
wrapper = mount(Popup, {
|
||||
props: {
|
||||
show: true,
|
||||
onClose,
|
||||
'onUpdate:show': (show) => {
|
||||
wrapper.setProps({ show });
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
await wrapper.find('.van-overlay').trigger('click');
|
||||
expect(onClose).toHaveBeenCalledTimes(1);
|
||||
});
|
||||
|
||||
test('should change duration when using duration prop', () => {
|
||||
wrapper = mount(Popup, {
|
||||
props: {
|
||||
|
Loading…
x
Reference in New Issue
Block a user