From: Evan You Date: Tue, 3 Sep 2019 22:24:32 +0000 (-0400) Subject: chore: fix type X-Git-Tag: v3.0.0-alpha.0~835 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=acda3cf2d9722c40ccee816250e5a19db63d4832;p=thirdparty%2Fvuejs%2Fcore.git chore: fix type --- diff --git a/packages/runtime-core/src/component.ts b/packages/runtime-core/src/component.ts index 8ff7326225..8d26f4f03d 100644 --- a/packages/runtime-core/src/component.ts +++ b/packages/runtime-core/src/component.ts @@ -107,7 +107,7 @@ interface SetupContext { emit: ((event: string, ...args: unknown[]) => void) } -export type ComponentInstance

= { +export type ComponentInstance

= { type: FunctionalComponent | ComponentOptions parent: ComponentInstance | null appContext: AppContext