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 6444348 commit a520507Copy full SHA for a520507
src/LazyHydrate.js
@@ -137,11 +137,11 @@ export default {
137
},
138
render(h) {
139
const tag = this.$el ? this.$el.tagName : `div`;
140
- const children = this.$scopedSlots.default
+ const child = this.$scopedSlots.default
141
? this.$scopedSlots.default({ hydrated: this.hydrated })
142
: this.$slots.default[0];
143
const vnode = this.hydrated
144
- ? children
+ ? child
145
: h(tag);
146
147
// Special thanks to Rahul Kadyan for the following lines of code.
0 commit comments