From acda3cf2d9722c40ccee816250e5a19db63d4832 Mon Sep 17 00:00:00 2001 From: Evan You Date: Tue, 3 Sep 2019 18:24:32 -0400 Subject: [PATCH] chore: fix type --- packages/runtime-core/src/component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/runtime-core/src/component.ts b/packages/runtime-core/src/component.ts index 8ff732622..8d26f4f03 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