Skip to content

Commit 69cfed6

Browse files
authored
fix(compiler-core): should attach key to single element child of <template v-for> (#1910)
1 parent 7ffb79c commit 69cfed6

File tree

3 files changed

+43
-0
lines changed

3 files changed

+43
-0
lines changed

packages/compiler-core/__tests__/transforms/__snapshots__/vFor.spec.ts.snap

+17
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,23 @@ return function render(_ctx, _cache) {
104104
}"
105105
`;
106106

107+
exports[`compiler: v-for codegen template v-for key injection with single child 1`] = `
108+
"const _Vue = Vue
109+
110+
return function render(_ctx, _cache) {
111+
with (_ctx) {
112+
const { renderList: _renderList, Fragment: _Fragment, openBlock: _openBlock, createBlock: _createBlock, createVNode: _createVNode } = _Vue
113+
114+
return (_openBlock(true), _createBlock(_Fragment, null, _renderList(items, (item) => {
115+
return (_openBlock(), _createBlock(\\"span\\", {
116+
key: item.id,
117+
id: item.id
118+
}, null, 8 /* PROPS */, [\\"id\\"]))
119+
}), 128 /* KEYED_FRAGMENT */))
120+
}
121+
}"
122+
`;
123+
107124
exports[`compiler: v-for codegen template v-for w/ <slot/> 1`] = `
108125
"const _Vue = Vue
109126

packages/compiler-core/__tests__/transforms/vFor.spec.ts

+23
Original file line numberDiff line numberDiff line change
@@ -770,6 +770,29 @@ describe('compiler: v-for', () => {
770770
expect(generate(root).code).toMatchSnapshot()
771771
})
772772

773+
// #1907
774+
test('template v-for key injection with single child', () => {
775+
const {
776+
root,
777+
node: { codegenNode }
778+
} = parseWithForTransform(
779+
'<template v-for="item in items" :key="item.id"><span :id="item.id" /></template>'
780+
)
781+
expect(assertSharedCodegen(codegenNode, true)).toMatchObject({
782+
source: { content: `items` },
783+
params: [{ content: `item` }],
784+
innerVNodeCall: {
785+
type: NodeTypes.VNODE_CALL,
786+
tag: `"span"`,
787+
props: createObjectMatcher({
788+
key: '[item.id]',
789+
id: '[item.id]'
790+
})
791+
}
792+
})
793+
expect(generate(root).code).toMatchSnapshot()
794+
})
795+
773796
test('v-for on <slot/>', () => {
774797
const {
775798
root,

packages/compiler-core/src/transforms/vFor.ts

+3
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,9 @@ export const transformFor = createStructuralDirectiveTransform(
145145
// but mark it as a block.
146146
childBlock = (children[0] as PlainElementNode)
147147
.codegenNode as VNodeCall
148+
if (isTemplate && keyProperty) {
149+
injectProp(childBlock, keyProperty, context)
150+
}
148151
childBlock.isBlock = !isStableFragment
149152
if (childBlock.isBlock) {
150153
helper(OPEN_BLOCK)

0 commit comments

Comments
 (0)