Skip to content

Commit d483a49

Browse files
liximomoyyx990803
authored andcommitted
fix(compiler): normalize potential functional component children in v-for (#8558)
fix #8468
1 parent 59d4351 commit d483a49

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

src/compiler/codegen/index.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,10 @@ export function genChildren (
406406
el.tag !== 'template' &&
407407
el.tag !== 'slot'
408408
) {
409-
return (altGenElement || genElement)(el, state)
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` : ``
412+
return `${(altGenElement || genElement)(el, state)}${normalizationType}`
410413
}
411414
const normalizationType = checkSkip
412415
? getNormalizationType(children, state.maybeComponent)

test/unit/features/options/functional.spec.js

+21
Original file line numberDiff line numberDiff line change
@@ -316,4 +316,25 @@ describe('Options functional', () => {
316316
triggerEvent(parent.$el.querySelector('.clickable'), 'click')
317317
waitForUpdate(assertMarkup).then(done)
318318
})
319+
320+
// #8468
321+
it('should normalize nested arrays when use functional components with v-for', () => {
322+
const Foo = {
323+
functional: true,
324+
props: {
325+
name: {}
326+
},
327+
render (h, context) {
328+
return [h('span', 'hi'), h('span', context.props.name)]
329+
}
330+
}
331+
const vm = new Vue({
332+
template: `<div><foo v-for="name in names" :name="name" /></div>`,
333+
data: {
334+
names: ['foo', 'bar']
335+
},
336+
components: { Foo }
337+
}).$mount()
338+
expect(vm.$el.innerHTML).toBe('<span>hi</span><span>foo</span><span>hi</span><span>bar</span>')
339+
})
319340
})

0 commit comments

Comments
 (0)