Skip to content

Commit cb31eb4

Browse files
committed
feat(runtime-core): failed component resolution should fallback to native element
1 parent c5beb9f commit cb31eb4

File tree

1 file changed

+6
-18
lines changed

1 file changed

+6
-18
lines changed

packages/runtime-core/src/helpers/resolveAssets.ts

+6-18
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
import { currentRenderingInstance } from '../componentRenderUtils'
2-
import {
3-
currentInstance,
4-
Component,
5-
ComponentInternalInstance,
6-
FunctionalComponent
7-
} from '../component'
2+
import { currentInstance, Component, FunctionalComponent } from '../component'
83
import { Directive } from '../directives'
94
import {
105
camelize,
@@ -18,20 +13,16 @@ import { warn } from '../warning'
1813
const COMPONENTS = 'components'
1914
const DIRECTIVES = 'directives'
2015

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
2318
}
2419

2520
export function resolveDynamicComponent(
2621
component: unknown
2722
): Component | string | undefined {
2823
if (!component) return
2924
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
3526
} else if (isFunction(component) || isObject(component)) {
3627
return component
3728
}
@@ -45,23 +36,20 @@ export function resolveDirective(name: string): Directive | undefined {
4536
function resolveAsset(
4637
type: typeof COMPONENTS,
4738
name: string,
48-
instance?: ComponentInternalInstance | null,
4939
warnMissing?: boolean
5040
): Component | undefined
5141
// overload 2: directives
5242
function resolveAsset(
5343
type: typeof DIRECTIVES,
54-
name: string,
55-
instance?: ComponentInternalInstance | null
44+
name: string
5645
): Directive | undefined
5746

5847
function resolveAsset(
5948
type: typeof COMPONENTS | typeof DIRECTIVES,
6049
name: string,
61-
instance: ComponentInternalInstance | null = currentRenderingInstance ||
62-
currentInstance,
6350
warnMissing = true
6451
) {
52+
const instance = currentRenderingInstance || currentInstance
6553
if (instance) {
6654
let camelized, capitalized
6755
const registry = instance[type]

0 commit comments

Comments
 (0)