Преглед на файлове

types: fix public instance $root and $parent type

Evan You преди 6 години
родител
ревизия
8ae362400e
променени са 1 файла, в които са добавени 2 реда и са изтрити 2 реда
  1. 2 2
      packages/runtime-core/src/componentProxy.ts

+ 2 - 2
packages/runtime-core/src/componentProxy.ts

@@ -36,8 +36,8 @@ export type ComponentPublicInstance<
   $attrs: Data
   $refs: Data
   $slots: Slots
-  $root: ComponentInternalInstance | null
-  $parent: ComponentInternalInstance | null
+  $root: ComponentPublicInstance | null
+  $parent: ComponentPublicInstance | null
   $emit: EmitFn<E>
   $el: any
   $options: ComponentOptionsBase<P, B, D, C, M, E>