File tree 2 files changed +43
-1
lines changed
runtime-core/src/components
2 files changed +43
-1
lines changed Original file line number Diff line number Diff line change @@ -139,7 +139,10 @@ export const TeleportImpl = {
139
139
parentSuspense ,
140
140
isSVG
141
141
)
142
- if ( n2 . patchFlag > 0 && n2 . shapeFlag & ShapeFlags . ARRAY_CHILDREN ) {
142
+ // even in block tree mode we need to make sure all root-level nodes
143
+ // in the teleport inherit previous DOM references so that they can
144
+ // be moved in future patches.
145
+ if ( n2 . shapeFlag & ShapeFlags . ARRAY_CHILDREN ) {
143
146
const oldChildren = n1 . children as VNode [ ]
144
147
const children = n2 . children as VNode [ ]
145
148
for ( let i = 0 ; i < children . length ; i ++ ) {
Original file line number Diff line number Diff line change @@ -208,4 +208,43 @@ describe('compiler + runtime integration', () => {
208
208
) . toHaveBeenWarned ( )
209
209
document . querySelector = origin
210
210
} )
211
+
212
+ // #1813
213
+ it ( 'should not report an error when "0" as patchFlag value' , async ( ) => {
214
+ const container = document . createElement ( 'div' )
215
+ const target = document . createElement ( 'div' )
216
+ const count = ref ( 0 )
217
+ const origin = document . querySelector
218
+ document . querySelector = jest . fn ( ) . mockReturnValue ( target )
219
+
220
+ const App = {
221
+ template : `
222
+ <teleport v-if="count < 2" to="#target">
223
+ <div>
224
+ <div>{{ count }}</div>
225
+ </div>
226
+ </teleport>
227
+ ` ,
228
+ data ( ) {
229
+ return {
230
+ count
231
+ }
232
+ }
233
+ }
234
+ createApp ( App ) . mount ( container )
235
+ expect ( container . innerHTML ) . toBe ( `<!--teleport start--><!--teleport end-->` )
236
+ expect ( target . innerHTML ) . toBe ( `<div><div>0</div></div>` )
237
+
238
+ count . value ++
239
+ await nextTick ( )
240
+ expect ( container . innerHTML ) . toBe ( `<!--teleport start--><!--teleport end-->` )
241
+ expect ( target . innerHTML ) . toBe ( `<div><div>1</div></div>` )
242
+
243
+ count . value ++
244
+ await nextTick ( )
245
+ expect ( container . innerHTML ) . toBe ( `<!--v-if-->` )
246
+ expect ( target . innerHTML ) . toBe ( `` )
247
+
248
+ document . querySelector = origin
249
+ } )
211
250
} )
You can’t perform that action at this time.
0 commit comments