This commit is contained in:
Walter Montes 2025-06-18 15:37:41 +02:00 committed by GitHub
commit c18fa3a334
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ export interface AsyncComponentOptions<T = any> {
}
export const isAsyncWrapper = (i: ComponentInternalInstance | VNode): boolean =>
!!(i.type as ComponentOptions).__asyncLoader
!!(i && i.type && (i.type as ComponentOptions).__asyncLoader)
/*! #__NO_SIDE_EFFECTS__ */
export function defineAsyncComponent<