fix(FloatingPanel): Reuse closest function (#12007)

This commit is contained in:
ShuGang Zhou 2023-06-22 11:05:01 +08:00 committed by GitHub
parent 02740dd82e
commit 46939972f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,6 +9,7 @@ import {
// Utils
import {
addUnit,
closest,
createNamespace,
makeArrayProp,
makeNumericProp,
@ -88,11 +89,6 @@ export default defineComponent({
return moveY;
};
const closest = (arr: number[], target: number) =>
arr.reduce((pre, cur) =>
Math.abs(pre - target) < Math.abs(cur - target) ? pre : cur
);
let startY: number;
const touch = useTouch();