File tree 2 files changed +38
-1
lines changed
test/unit/features/options
2 files changed +38
-1
lines changed Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ function callUpdatedHooks (queue) {
98
98
while ( i -- ) {
99
99
const watcher = queue [ i ]
100
100
const vm = watcher . vm
101
- if ( vm . _watcher === watcher && vm . _isMounted ) {
101
+ if ( vm . _watcher === watcher && vm . _isMounted && ! vm . _isDestroyed ) {
102
102
callHook ( vm , 'updated' )
103
103
}
104
104
}
Original file line number Diff line number Diff line change @@ -199,6 +199,43 @@ describe('Options lifecycle hooks', () => {
199
199
expect ( calls ) . toEqual ( [ 'child' , 'parent' ] )
200
200
} ) . then ( done )
201
201
} )
202
+
203
+ // #8076
204
+ it ( 'should not be called after destroy' , done => {
205
+ const updated = jasmine . createSpy ( 'updated' )
206
+ const destroyed = jasmine . createSpy ( 'destroyed' )
207
+
208
+ Vue . component ( 'todo' , {
209
+ template : '<div>{{todo.done}}</div>' ,
210
+ props : [ 'todo' ] ,
211
+ destroyed,
212
+ updated
213
+ } )
214
+
215
+ const vm = new Vue ( {
216
+ template : `
217
+ <div>
218
+ <todo v-for="t in pendingTodos" :todo="t" :key="t.id"></todo>
219
+ </div>
220
+ ` ,
221
+ data ( ) {
222
+ return {
223
+ todos : [ { id : 1 , done : false } ]
224
+ }
225
+ } ,
226
+ computed : {
227
+ pendingTodos ( ) {
228
+ return this . todos . filter ( t => ! t . done )
229
+ }
230
+ }
231
+ } ) . $mount ( )
232
+
233
+ vm . todos [ 0 ] . done = true
234
+ waitForUpdate ( ( ) => {
235
+ expect ( destroyed ) . toHaveBeenCalled ( )
236
+ expect ( updated ) . not . toHaveBeenCalled ( )
237
+ } ) . then ( done )
238
+ } )
202
239
} )
203
240
204
241
describe ( 'beforeDestroy' , ( ) => {
You can’t perform that action at this time.
0 commit comments