Skip to content

Commit 517c2b8

Browse files
authored
fix(teleport): always inherit root DOM nodes on patch (#1836)
fix #1813
1 parent 9fb8418 commit 517c2b8

File tree

2 files changed

+43
-1
lines changed

2 files changed

+43
-1
lines changed

packages/runtime-core/src/components/Teleport.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,10 @@ export const TeleportImpl = {
139139
parentSuspense,
140140
isSVG
141141
)
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) {
143146
const oldChildren = n1.children as VNode[]
144147
const children = n2.children as VNode[]
145148
for (let i = 0; i < children.length; i++) {

packages/vue/__tests__/index.spec.ts

+39
Original file line numberDiff line numberDiff line change
@@ -208,4 +208,43 @@ describe('compiler + runtime integration', () => {
208208
).toHaveBeenWarned()
209209
document.querySelector = origin
210210
})
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+
})
211250
})

0 commit comments

Comments
 (0)