fix(Swipe): incorrect width when resize in invisible state (#5678)

This commit is contained in:
陈嘉涵 2020-02-18 09:18:01 +08:00
parent 1dd61956fc
commit a4ce9b955e

View File

@ -1,5 +1,6 @@
// Utils
import { createNamespace } from '../utils';
import { isHidden } from '../utils/dom/style';
import { preventDefault } from '../utils/dom/event';
import { doubleRaf } from '../utils/dom/raf';
import { range } from '../utils/format/number';
@ -149,7 +150,7 @@ export default createComponent({
initialize(active = +this.initialSwipe) {
clearTimeout(this.timer);
if (this.$el) {
if (this.$el && !isHidden(this.$el)) {
const rect = this.$el.getBoundingClientRect();
this.computedWidth = +this.width || rect.width;
this.computedHeight = +this.height || rect.height;