@@ -107,6 +107,7 @@ export function parse (
107
107
}
108
108
109
109
function closeElement ( element ) {
110
+ trimEndingWhitespace ( element )
110
111
if ( ! inVPre && ! element . processed ) {
111
112
element = processElement ( element , options )
112
113
}
@@ -133,14 +134,25 @@ export function parse (
133
134
if ( currentParent && ! element . forbidden ) {
134
135
if ( element . elseif || element . else ) {
135
136
processIfConditions ( element , currentParent )
136
- } else if ( element . slotScope ) { // scoped slot
137
- const name = element . slotTarget || '"default"'
138
- ; ( currentParent . scopedSlots || ( currentParent . scopedSlots = { } ) ) [ name ] = element
139
137
} else {
138
+ if ( element . slotScope ) {
139
+ // scoped slot
140
+ // keep it in the children list so that v-else(-if) conditions can
141
+ // find it as the prev node.
142
+ const name = element . slotTarget || '"default"'
143
+ ; ( currentParent . scopedSlots || ( currentParent . scopedSlots = { } ) ) [ name ] = element
144
+ }
140
145
currentParent . children . push ( element )
141
146
element . parent = currentParent
142
147
}
143
148
}
149
+
150
+ // final children cleanup
151
+ // filter out scoped slots
152
+ element . children = element . children . filter ( c => ! c . slotScope )
153
+ // remove trailing whitespace node again
154
+ trimEndingWhitespace ( element )
155
+
144
156
// check pre state
145
157
if ( element . pre ) {
146
158
inVPre = false
@@ -154,6 +166,20 @@ export function parse (
154
166
}
155
167
}
156
168
169
+ function trimEndingWhitespace ( el ) {
170
+ // remove trailing whitespace node
171
+ if ( ! inPre ) {
172
+ let lastNode
173
+ while (
174
+ ( lastNode = el . children [ el . children . length - 1 ] ) &&
175
+ lastNode . type === 3 &&
176
+ lastNode . text === ' '
177
+ ) {
178
+ el . children . pop ( )
179
+ }
180
+ }
181
+ }
182
+
157
183
function checkRootConstraints ( el ) {
158
184
if ( el . tag === 'slot' || el . tag === 'template' ) {
159
185
warnOnce (
@@ -268,13 +294,6 @@ export function parse (
268
294
269
295
end ( tag , start , end ) {
270
296
const element = stack [ stack . length - 1 ]
271
- if ( ! inPre ) {
272
- // remove trailing whitespace node
273
- const lastNode = element . children [ element . children . length - 1 ]
274
- if ( lastNode && lastNode . type === 3 && lastNode . text === ' ' ) {
275
- element . children . pop ( )
276
- }
277
- }
278
297
// pop stack
279
298
stack . length -= 1
280
299
currentParent = stack [ stack . length - 1 ]
@@ -658,8 +677,9 @@ function processSlotContent (el) {
658
677
const slots = el . scopedSlots || ( el . scopedSlots = { } )
659
678
const { name, dynamic } = getSlotName ( slotBinding )
660
679
const slotContainer = slots [ name ] = createASTElement ( 'template' , [ ] , el )
680
+ slotContainer . slotTarget = name
661
681
slotContainer . slotTargetDynamic = dynamic
662
- slotContainer . children = el . children
682
+ slotContainer . children = el . children . filter ( c => ! c . slotScope )
663
683
slotContainer . slotScope = slotBinding . value || `_`
664
684
// remove children as they are returned from scopedSlots now
665
685
el . children = [ ]
0 commit comments