@@ -42,28 +42,35 @@ function isTextNode (node): boolean {
42
42
43
43
function normalizeArrayChildren ( children : any , nestedIndex ?: string ) : Array < VNode > {
44
44
const res = [ ]
45
- let i , c, last
45
+ let i , c, lastIndex , last
46
46
for ( i = 0 ; i < children . length ; i ++ ) {
47
47
c = children [ i ]
48
48
if ( isUndef ( c ) || typeof c === 'boolean' ) continue
49
- last = res [ res . length - 1 ]
49
+ lastIndex = res . length - 1
50
+ last = res [ lastIndex ]
50
51
// nested
51
- if ( Array . isArray ( c ) ) {
52
- res . push . apply ( res , normalizeArrayChildren ( c , `${ nestedIndex || '' } _${ i } ` ) )
52
+ if ( Array . isArray ( c ) && c . length > 0 ) {
53
+ c = normalizeArrayChildren ( c , `${ nestedIndex || '' } _${ i } ` )
54
+ // merge adjacent text nodes
55
+ if ( isTextNode ( c [ 0 ] ) && isTextNode ( last ) ) {
56
+ res [ lastIndex ] = createTextVNode ( last . text + ( c [ 0 ] : any ) . text )
57
+ c . shift ( )
58
+ }
59
+ res . push . apply ( res , c )
53
60
} else if ( isPrimitive ( c ) ) {
54
61
if ( isTextNode ( last ) ) {
55
62
// merge adjacent text nodes
56
63
// this is necessary for SSR hydration because text nodes are
57
64
// essentially merged when rendered to HTML strings
58
- ( last : any ) . text += String ( c )
65
+ res [ lastIndex ] = createTextVNode ( last . text + c )
59
66
} else if ( c !== '' ) {
60
67
// convert primitive to vnode
61
68
res. push ( createTextVNode ( c ) )
62
69
}
63
70
} else {
64
71
if ( isTextNode ( c ) && isTextNode ( last ) ) {
65
72
// merge adjacent text nodes
66
- res [ res . length - 1 ] = createTextVNode ( last . text + c . text )
73
+ res [ lastIndex ] = createTextVNode ( last . text + c . text )
67
74
} else {
68
75
// default key for nested array children (likely generated by v-for)
69
76
if ( isTrue ( children . _isVList ) &&
0 commit comments