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 ef4fc1c commit 8c0fac6Copy full SHA for 8c0fac6
src/core/vdom/patch.js
@@ -446,7 +446,7 @@ export function createPatchFunction (backend) {
446
if (vnode.tag) {
447
return (
448
vnode.tag.indexOf('vue-component') === 0 ||
449
- vnode.tag === nodeOps.tagName(node).toLowerCase()
+ vnode.tag.toLowerCase() === nodeOps.tagName(node).toLowerCase()
450
)
451
} else {
452
return _toString(vnode.text) === node.data
0 commit comments