fix(SwipeCell): the click will be triggered after the touchend event on desktop (#13040)

This commit is contained in:
inottn 2024-08-04 20:11:05 +08:00 committed by GitHub
parent 423b0fe728
commit 5afe27d67f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -194,6 +194,11 @@ export default defineComponent({
if (stop) {
event.stopPropagation();
}
if (lockClick) {
return;
}
onClick(position, event);
};