mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix(FloatingPanel): Reuse closest function (#12007)
This commit is contained in:
parent
02740dd82e
commit
46939972f2
@ -9,6 +9,7 @@ import {
|
|||||||
// Utils
|
// Utils
|
||||||
import {
|
import {
|
||||||
addUnit,
|
addUnit,
|
||||||
|
closest,
|
||||||
createNamespace,
|
createNamespace,
|
||||||
makeArrayProp,
|
makeArrayProp,
|
||||||
makeNumericProp,
|
makeNumericProp,
|
||||||
@ -88,11 +89,6 @@ export default defineComponent({
|
|||||||
return moveY;
|
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;
|
let startY: number;
|
||||||
const touch = useTouch();
|
const touch = useTouch();
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user