@@ -547,27 +547,46 @@ export function createPatchFunction (backend) {
547
547
if ( ! elm . hasChildNodes ( ) ) {
548
548
createChildren ( vnode , children , insertedVnodeQueue )
549
549
} else {
550
- let childrenMatch = true
551
- let childNode = elm . firstChild
552
- for ( let i = 0 ; i < children . length ; i ++ ) {
553
- if ( ! childNode || ! hydrate ( childNode , children [ i ] , insertedVnodeQueue ) ) {
554
- childrenMatch = false
555
- break
550
+ // v-html and domProps: innerHTML
551
+ if ( isDef ( i = data ) && isDef ( i = i . domProps ) && isDef ( i = i . innerHTML ) ) {
552
+ if ( i !== elm . innerHTML ) {
553
+ /* istanbul ignore if */
554
+ if ( process . env . NODE_ENV !== 'production' &&
555
+ typeof console !== 'undefined' &&
556
+ ! bailed
557
+ ) {
558
+ bailed = true
559
+ console . warn ( 'Parent: ' , elm )
560
+ console . warn ( 'server innerHTML: ' , i )
561
+ console . warn ( 'client innerHTML: ' , elm . innerHTML )
562
+ }
563
+ return false
556
564
}
557
- childNode = childNode . nextSibling
558
- }
559
- // if childNode is not null, it means the actual childNodes list is
560
- // longer than the virtual children list.
561
- if ( ! childrenMatch || childNode ) {
562
- if ( process . env . NODE_ENV !== 'production' &&
563
- typeof console !== 'undefined' &&
564
- ! bailed
565
- ) {
566
- bailed = true
567
- console . warn ( 'Parent: ' , elm )
568
- console . warn ( 'Mismatching childNodes vs. VNodes: ' , elm . childNodes , children )
565
+ } else {
566
+ // iterate and compare children lists
567
+ let childrenMatch = true
568
+ let childNode = elm . firstChild
569
+ for ( let i = 0 ; i < children . length ; i ++ ) {
570
+ if ( ! childNode || ! hydrate ( childNode , children [ i ] , insertedVnodeQueue ) ) {
571
+ childrenMatch = false
572
+ break
573
+ }
574
+ childNode = childNode . nextSibling
575
+ }
576
+ // if childNode is not null, it means the actual childNodes list is
577
+ // longer than the virtual children list.
578
+ if ( ! childrenMatch || childNode ) {
579
+ /* istanbul ignore if */
580
+ if ( process . env . NODE_ENV !== 'production' &&
581
+ typeof console !== 'undefined' &&
582
+ ! bailed
583
+ ) {
584
+ bailed = true
585
+ console . warn ( 'Parent: ' , elm )
586
+ console . warn ( 'Mismatching childNodes vs. VNodes: ' , elm . childNodes , children )
587
+ }
588
+ return false
569
589
}
570
- return false
571
590
}
572
591
}
573
592
}
0 commit comments