When i use Grid Layout and Grid item, these errors appear:

I am using "vue-grid-layout": "^2.3.6"
I am also seeing this. It doesn't produce any noticable visual bugs since it is on unmount but the errors are definitely jarring.
I was receiving the same error and also came here looking for resolution
In my scenario I got rid of the error by using a dynamic import for the component containing the vue-grid-layout
I'm using the standard project layout created by the Vue CLI and have a Collection component which contains the vue-grid-layout, changing this:
...
import Collection from "../components/Collection.vue"
export default {
components: {
Collection
}
}
...
to this:
...
export default {
components: {
Collection: () => import("../components/Collection.vue")
}
}
...
Got rid of the error for me.
Hope that helps!
should be fixed in the next release
Most helpful comment
should be fixed in the next release