mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix(Swipe): incorrect width when resize in invisible state (#5678)
This commit is contained in:
parent
1dd61956fc
commit
a4ce9b955e
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user