Skip to content

Commit e8bc1ce

Browse files
committed
1 parent 6c8c6ef commit e8bc1ce

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/components/map/GlMap.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,14 +109,14 @@ export default {
109109
},
110110

111111
render() {
112-
if (!this.$_containerVNode) {
113-
this.$_containerVNode = h("div", {
112+
if (!this.$data.$_containerVNode) {
113+
this.$data.$_containerVNode = h("div", {
114114
id: this.container,
115115
ref: "container"
116116
});
117117
}
118118
return h("div", { class: "mgl-map-wrapper" }, [
119-
this.$_containerVNode,
119+
this.$data.$_containerVNode,
120120
this.initialized ? this.$slots.default() : null
121121
]);
122122
},

0 commit comments

Comments
 (0)