We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 048e940 commit 604230fCopy full SHA for 604230f
src/core/components/keep-alive.js
@@ -87,8 +87,8 @@ export default {
87
// check pattern
88
const name: ?string = getComponentName(componentOptions)
89
if (name && (
90
- (this.include && !matches(this.include, name)) ||
91
- (this.exclude && matches(this.exclude, name))
+ (this.exclude && matches(this.exclude, name)) ||
+ (this.include && !matches(this.include, name))
92
)) {
93
return vnode
94
}
0 commit comments