Skip to content

Commit 922bcb0

Browse files
committed
fix: resize height not correct #2465
close #2465
1 parent 98628ae commit 922bcb0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/vc-resize-observer/index.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ const VueResizeObserver = {
6464
if (this.width !== fixedWidth || this.height !== fixedHeight) {
6565
const size = { width: fixedWidth, height: fixedHeight };
6666
this.width = fixedWidth;
67-
this.fixedHeight = fixedHeight;
67+
this.height = fixedHeight;
6868
this.$emit('resize', size);
6969
}
7070
},

0 commit comments

Comments
 (0)