Skip to content

Commit 1b4a8a0

Browse files
committed
fix(compiler): fix codegen for v-for component inside template
fix #9142
1 parent 448ba65 commit 1b4a8a0

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

src/compiler/codegen/index.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -406,9 +406,7 @@ export function genChildren (
406406
el.tag !== 'template' &&
407407
el.tag !== 'slot'
408408
) {
409-
// because el may be a functional component and return an Array instead of a single root.
410-
// In this case, just a simple normalization is needed
411-
const normalizationType = state.maybeComponent(el) ? `,1` : ``
409+
const normalizationType = checkSkip && state.maybeComponent(el) ? `,1` : ``
412410
return `${(altGenElement || genElement)(el, state)}${normalizationType}`
413411
}
414412
const normalizationType = checkSkip

test/unit/modules/compiler/codegen.spec.js

+8
Original file line numberDiff line numberDiff line change
@@ -631,5 +631,13 @@ describe('codegen', () => {
631631
{ isReservedTag }
632632
)
633633
})
634+
635+
// #9142
636+
it('should compile single v-for component inside template', () => {
637+
assertCodegen(
638+
`<div><template v-if="ok"><foo v-for="i in 1" :key="i"></foo></template></div>`,
639+
`with(this){return _c('div',[(ok)?_l((1),function(i){return _c('foo',{key:i})}):_e()],2)}`
640+
)
641+
})
634642
})
635643
/* eslint-enable quotes */

0 commit comments

Comments
 (0)