We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4358d8e commit 2ee7c8cCopy full SHA for 2ee7c8c
src/GridLayout.vue
@@ -188,12 +188,11 @@
188
if (this.layout !== undefined && this.layout.length !== this.lastLayoutLength) {
189
// console.log("### LAYOUT UPDATE!");
190
this.lastLayoutLength = this.layout.length;
191
- compact(this.layout, this.verticalCompact);
192
-
193
//this.$broadcast("updateWidth", this.width);
194
- this.eventBus.$emit("updateWidth", this.width);
195
- this.updateHeight();
196
}
+ compact(this.layout, this.verticalCompact);
+ this.eventBus.$emit("updateWidth", this.width);
+ this.updateHeight();
197
},
198
updateHeight: function () {
199
this.mergedStyle = {
0 commit comments