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 3303f91 commit 561f1abCopy full SHA for 561f1ab
src/components/GridLayout.vue
@@ -249,7 +249,7 @@
249
},
250
responsive() {
251
if (!this.responsive) {
252
- this.$emit('layout-updated', this.originalLayout);
+ this.$emit('update:layout', this.originalLayout);
253
this.eventBus.emit("setColNum", this.colNum);
254
}
255
this.onWindowResize();
@@ -432,7 +432,7 @@
432
433
434
// new prop sync
435
- this.$emit('layout-updated', layout);
+ this.$emit('update:layout', layout);
436
437
this.lastBreakpoint = newBreakpoint;
438
this.eventBus.emit("setColNum", getColsFromBreakpoint(newBreakpoint, this.cols));
0 commit comments