@@ -3,6 +3,7 @@ import { getFirstComponentChild } from 'core/vdom/helpers/index'
3
3
import type VNode from 'core/vdom/vnode'
4
4
import type { VNodeComponentOptions } from 'types/vnode'
5
5
import type { Component } from 'types/component'
6
+ import { getComponentName } from '../vdom/create-component'
6
7
7
8
type CacheEntry = {
8
9
name ?: string
@@ -12,8 +13,8 @@ type CacheEntry = {
12
13
13
14
type CacheEntryMap = Record < string , CacheEntry | null >
14
15
15
- function getComponentName ( opts ?: VNodeComponentOptions ) : string | null {
16
- return opts && ( opts . Ctor . options . name || opts . tag )
16
+ function _getComponentName ( opts ?: VNodeComponentOptions ) : string | null {
17
+ return opts && ( getComponentName ( opts . Ctor . options as any ) || opts . tag )
17
18
}
18
19
19
20
function matches (
@@ -81,7 +82,7 @@ export default {
81
82
if ( vnodeToCache ) {
82
83
const { tag, componentInstance, componentOptions } = vnodeToCache
83
84
cache [ keyToCache ] = {
84
- name : getComponentName ( componentOptions ) ,
85
+ name : _getComponentName ( componentOptions ) ,
85
86
tag,
86
87
componentInstance
87
88
}
@@ -126,7 +127,7 @@ export default {
126
127
const componentOptions = vnode && vnode . componentOptions
127
128
if ( componentOptions ) {
128
129
// check pattern
129
- const name = getComponentName ( componentOptions )
130
+ const name = _getComponentName ( componentOptions )
130
131
const { include, exclude } = this
131
132
if (
132
133
// not included
0 commit comments