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 30bd34e commit a675221Copy full SHA for a675221
src/compiler/codegen/index.js
@@ -230,7 +230,7 @@ function genSlot (el: ASTElement): string {
230
}
231
232
function genComponent (el: any): string {
233
- const children = genChildren(el)
+ const children = el.inlineTemplate ? null : genChildren(el)
234
return `_h(${el.component},${genData(el)}${
235
children ? `,${children}` : ''
236
})`
0 commit comments