We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc4f4c5 commit bb6089cCopy full SHA for bb6089c
src/core/components/keep-alive.js
@@ -28,7 +28,7 @@ export default {
28
if (vnode && vnode.componentOptions) {
29
const opts: VNodeComponentOptions = vnode.componentOptions
30
// check pattern
31
- const name = opts.tag || opts.Ctor.options.name
+ const name = opts.Ctor.options.name || opts.tag
32
if (name && (
33
(this.include && !matches(this.include, name)) ||
34
(this.exclude && matches(this.exclude, name))
0 commit comments