1
1
import { currentRenderingInstance } from '../componentRenderUtils'
2
- import {
3
- currentInstance ,
4
- Component ,
5
- ComponentInternalInstance ,
6
- FunctionalComponent
7
- } from '../component'
2
+ import { currentInstance , Component , FunctionalComponent } from '../component'
8
3
import { Directive } from '../directives'
9
4
import {
10
5
camelize ,
@@ -18,20 +13,16 @@ import { warn } from '../warning'
18
13
const COMPONENTS = 'components'
19
14
const DIRECTIVES = 'directives'
20
15
21
- export function resolveComponent ( name : string ) : Component | undefined {
22
- return resolveAsset ( COMPONENTS , name )
16
+ export function resolveComponent ( name : string ) : Component | string | undefined {
17
+ return resolveAsset ( COMPONENTS , name ) || name
23
18
}
24
19
25
20
export function resolveDynamicComponent (
26
21
component : unknown
27
22
) : Component | string | undefined {
28
23
if ( ! component ) return
29
24
if ( isString ( component ) ) {
30
- return (
31
- resolveAsset ( COMPONENTS , component , currentRenderingInstance , false ) ||
32
- // fallback to plain element
33
- component
34
- )
25
+ return resolveAsset ( COMPONENTS , component , false ) || component
35
26
} else if ( isFunction ( component ) || isObject ( component ) ) {
36
27
return component
37
28
}
@@ -45,23 +36,20 @@ export function resolveDirective(name: string): Directive | undefined {
45
36
function resolveAsset (
46
37
type : typeof COMPONENTS ,
47
38
name : string ,
48
- instance ?: ComponentInternalInstance | null ,
49
39
warnMissing ?: boolean
50
40
) : Component | undefined
51
41
// overload 2: directives
52
42
function resolveAsset (
53
43
type : typeof DIRECTIVES ,
54
- name : string ,
55
- instance ?: ComponentInternalInstance | null
44
+ name : string
56
45
) : Directive | undefined
57
46
58
47
function resolveAsset (
59
48
type : typeof COMPONENTS | typeof DIRECTIVES ,
60
49
name : string ,
61
- instance : ComponentInternalInstance | null = currentRenderingInstance ||
62
- currentInstance ,
63
50
warnMissing = true
64
51
) {
52
+ const instance = currentRenderingInstance || currentInstance
65
53
if ( instance ) {
66
54
let camelized , capitalized
67
55
const registry = instance [ type ]
0 commit comments