File tree 2 files changed +14
-2
lines changed
2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -697,6 +697,8 @@ export function createPatchFunction (backend) {
697
697
insert . fns [ i ] ( )
698
698
}
699
699
}
700
+ } else {
701
+ registerRef ( ancestor )
700
702
}
701
703
ancestor = ancestor . parent
702
704
}
Original file line number Diff line number Diff line change @@ -196,15 +196,25 @@ describe('ref', () => {
196
196
}
197
197
} )
198
198
199
- it ( 'should register on component with empty roots' , ( ) => {
199
+ it ( 'should register on component with empty roots' , done => {
200
200
const vm = new Vue ( {
201
201
template : '<child ref="test"></child>' ,
202
202
components : {
203
203
child : {
204
- template : '<div v-if="false"></div>'
204
+ template : '<div v-if="show"></div>' ,
205
+ data ( ) {
206
+ return { show : false }
207
+ }
205
208
}
206
209
}
207
210
} ) . $mount ( )
208
211
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 )
209
219
} )
210
220
} )
You can’t perform that action at this time.
0 commit comments