Skip to content

Commit 6ad44e1

Browse files
javoskiyyx990803
authored andcommitted
fix(ref): preserve ref on components after removing root element (#6718)
fix #6632, #6641
1 parent baabd6d commit 6ad44e1

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

src/core/vdom/patch.js

+2
Original file line numberDiff line numberDiff line change
@@ -697,6 +697,8 @@ export function createPatchFunction (backend) {
697697
insert.fns[i]()
698698
}
699699
}
700+
} else {
701+
registerRef(ancestor)
700702
}
701703
ancestor = ancestor.parent
702704
}

test/unit/features/ref.spec.js

+12-2
Original file line numberDiff line numberDiff line change
@@ -196,15 +196,25 @@ describe('ref', () => {
196196
}
197197
})
198198

199-
it('should register on component with empty roots', () => {
199+
it('should register on component with empty roots', done => {
200200
const vm = new Vue({
201201
template: '<child ref="test"></child>',
202202
components: {
203203
child: {
204-
template: '<div v-if="false"></div>'
204+
template: '<div v-if="show"></div>',
205+
data () {
206+
return { show: false }
207+
}
205208
}
206209
}
207210
}).$mount()
208211
expect(vm.$refs.test).toBe(vm.$children[0])
212+
vm.$refs.test.show = true
213+
waitForUpdate(() => {
214+
expect(vm.$refs.test).toBe(vm.$children[0])
215+
vm.$refs.test.show = false
216+
}).then(() => {
217+
expect(vm.$refs.test).toBe(vm.$children[0])
218+
}).then(done)
209219
})
210220
})

0 commit comments

Comments
 (0)