mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix(Swipe): can't disable loop in some cases (#7208)
This commit is contained in:
parent
deeff0bdec
commit
d9e24286d2
@ -167,8 +167,8 @@ export default createComponent({
|
||||
this.rect = rect;
|
||||
this.swiping = true;
|
||||
this.active = active;
|
||||
this.computedWidth = Math.round(+this.width || rect.width);
|
||||
this.computedHeight = Math.round(+this.height || rect.height);
|
||||
this.computedWidth = Math.floor(+this.width || rect.width);
|
||||
this.computedHeight = Math.floor(+this.height || rect.height);
|
||||
this.offset = this.getTargetOffset(active);
|
||||
this.children.forEach((swipe) => {
|
||||
swipe.offset = 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user