Skip to content

Commit 604230f

Browse files
cuteyumikoyyx990803
authored andcommitted
fix(keep-alive): higher priority for exclude than include (#6905)
1 parent 048e940 commit 604230f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/core/components/keep-alive.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,8 @@ export default {
8787
// check pattern
8888
const name: ?string = getComponentName(componentOptions)
8989
if (name && (
90-
(this.include && !matches(this.include, name)) ||
91-
(this.exclude && matches(this.exclude, name))
90+
(this.exclude && matches(this.exclude, name)) ||
91+
(this.include && !matches(this.include, name))
9292
)) {
9393
return vnode
9494
}

0 commit comments

Comments
 (0)