Skip to content

Commit 215f877

Browse files
committed
fix(keep-alive): run prune after render for correct active component check
fix #7566
1 parent 4378fc5 commit 215f877

File tree

2 files changed

+34
-5
lines changed

2 files changed

+34
-5
lines changed

src/core/components/keep-alive.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -71,13 +71,13 @@ export default {
7171
}
7272
},
7373

74-
watch: {
75-
include (val: string | RegExp | Array<string>) {
74+
mounted () {
75+
this.$watch('include', val => {
7676
pruneCache(this, name => matches(val, name))
77-
},
78-
exclude (val: string | RegExp | Array<string>) {
77+
})
78+
this.$watch('exclude', val => {
7979
pruneCache(this, name => !matches(val, name))
80-
}
80+
})
8181
},
8282

8383
render () {

test/unit/features/component/component-keep-alive.spec.js

+29
Original file line numberDiff line numberDiff line change
@@ -393,6 +393,35 @@ describe('Component keep-alive', () => {
393393
}).then(done)
394394
})
395395

396+
it('prune cache on include/exclude change + view switch', done => {
397+
const vm = new Vue({
398+
template: `
399+
<div>
400+
<keep-alive :include="include">
401+
<component :is="view"></component>
402+
</keep-alive>
403+
</div>
404+
`,
405+
data: {
406+
view: 'one',
407+
include: 'one,two'
408+
},
409+
components
410+
}).$mount()
411+
412+
vm.view = 'two'
413+
waitForUpdate(() => {
414+
assertHookCalls(one, [1, 1, 1, 1, 0])
415+
assertHookCalls(two, [1, 1, 1, 0, 0])
416+
vm.include = 'one'
417+
vm.view = 'one'
418+
}).then(() => {
419+
assertHookCalls(one, [1, 1, 2, 1, 0])
420+
// two should be pruned
421+
assertHookCalls(two, [1, 1, 1, 1, 1])
422+
}).then(done)
423+
})
424+
396425
it('should not prune currently active instance', done => {
397426
const vm = new Vue({
398427
template: `

0 commit comments

Comments
 (0)