mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
fix(FloatingPanel): Reuse closest function (#12007)
This commit is contained in:
parent
02740dd82e
commit
46939972f2
@ -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();
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user