mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix(Swipe): fix wrap problems caused by decimal width in some android devices
This commit is contained in:
parent
bf670797f9
commit
02afe720c6
@ -152,8 +152,8 @@ export default createComponent({
|
||||
|
||||
if (this.$el && !isHidden(this.$el)) {
|
||||
const rect = this.$el.getBoundingClientRect();
|
||||
this.computedWidth = +this.width || rect.width;
|
||||
this.computedHeight = +this.height || rect.height;
|
||||
this.computedWidth = Math.round(+this.width || rect.width);
|
||||
this.computedHeight = Math.round(+this.height || rect.height);
|
||||
}
|
||||
|
||||
this.swiping = true;
|
||||
|
Loading…
x
Reference in New Issue
Block a user