( name: string, maybeSelfReference?: boolean, )
| 20 | * @private |
| 21 | */ |
| 22 | export function resolveComponent( |
| 23 | name: string, |
| 24 | maybeSelfReference?: boolean, |
| 25 | ): ConcreteComponent | string { |
| 26 | return resolveAsset(COMPONENTS, name, true, maybeSelfReference) || name |
| 27 | } |
| 28 | |
| 29 | export const NULL_DYNAMIC_COMPONENT: unique symbol = Symbol.for('v-ndc') |
| 30 |