chore(ImagePreview): decrease tap offset (#10192)

This commit is contained in:
neverland 2022-01-15 20:07:12 +08:00 committed by GitHub
parent b4e3c3374c
commit 6e27d02404
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -192,7 +192,7 @@ export default defineComponent({
const { offsetX, offsetY } = touch;
const deltaTime = Date.now() - touchStartTime;
const TAP_TIME = 250;
const TAP_OFFSET = 10;
const TAP_OFFSET = 5;
if (
offsetX.value < TAP_OFFSET &&