fix(Swipe): fix wrap problems caused by decimal width in some android devices

This commit is contained in:
陈嘉涵 2020-02-18 10:43:37 +08:00
parent bf670797f9
commit 02afe720c6

View File

@ -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;