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 183bd43 commit 9247385Copy full SHA for 9247385
src/core/vdom/patch.js
@@ -534,7 +534,7 @@ export function createPatchFunction (backend) {
534
if (vnode.tag) {
535
return (
536
vnode.tag.indexOf('vue-component') === 0 ||
537
- vnode.tag.toLowerCase() === node.tagName.toLowerCase()
+ vnode.tag.toLowerCase() === (node.tagName && node.tagName.toLowerCase())
538
)
539
} else {
540
return _toString(vnode.text) === node.data
0 commit comments