Merge 31a1bdcf12
into 5f8314cb7f
This commit is contained in:
commit
c18fa3a334
|
@ -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<
|
||||
|
|
Loading…
Reference in New Issue