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 6c8c6ef commit e8bc1ceCopy full SHA for e8bc1ce
src/components/map/GlMap.js
@@ -109,14 +109,14 @@ export default {
109
},
110
111
render() {
112
- if (!this.$_containerVNode) {
113
- this.$_containerVNode = h("div", {
+ if (!this.$data.$_containerVNode) {
+ this.$data.$_containerVNode = h("div", {
114
id: this.container,
115
ref: "container"
116
});
117
}
118
return h("div", { class: "mgl-map-wrapper" }, [
119
- this.$_containerVNode,
+ this.$data.$_containerVNode,
120
this.initialized ? this.$slots.default() : null
121
]);
122
0 commit comments