Skip to content

Commit bacb911

Browse files
HerringtonDarkholmeyyx990803
authored andcommitted
fix(warning): allow symbol as vdom key (#7271)
1 parent c0d516c commit bacb911

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

src/core/vdom/patch.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ export function createPatchFunction (backend) {
270270
createElm(children[i], insertedVnodeQueue, vnode.elm, null, true)
271271
}
272272
} else if (isPrimitive(vnode.text)) {
273-
nodeOps.appendChild(vnode.elm, nodeOps.createTextNode(vnode.text))
273+
nodeOps.appendChild(vnode.elm, nodeOps.createTextNode(String(vnode.text)))
274274
}
275275
}
276276

src/shared/util.js

+2
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ export function isPrimitive (value: any): boolean %checks {
2727
return (
2828
typeof value === 'string' ||
2929
typeof value === 'number' ||
30+
// $flow-disable-line
31+
typeof value === 'symbol' ||
3032
typeof value === 'boolean'
3133
)
3234
}

test/unit/modules/vdom/create-element.spec.js

+9
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,15 @@ describe('create-element', () => {
215215
expect('Avoid using non-primitive value as key').not.toHaveBeenWarned()
216216
})
217217

218+
it('doesn\'t warn symbol key', () => {
219+
new Vue({
220+
render (h) {
221+
return h('div', { key: Symbol('symbol') })
222+
}
223+
}).$mount()
224+
expect('Avoid using non-primitive value as key').not.toHaveBeenWarned()
225+
})
226+
218227
it('nested child elements should be updated correctly', done => {
219228
const vm = new Vue({
220229
data: { n: 1 },

0 commit comments

Comments
 (0)