mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
fix(SwipeCell): the click will be triggered after the touchend event on desktop (#13040)
This commit is contained in:
parent
423b0fe728
commit
5afe27d67f
@ -194,6 +194,11 @@ export default defineComponent({
|
|||||||
if (stop) {
|
if (stop) {
|
||||||
event.stopPropagation();
|
event.stopPropagation();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (lockClick) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
onClick(position, event);
|
onClick(position, event);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user