瀏覽代碼

refactor(runtime-core): add @internal for instance.proxy (#1849)

Pick 5 年之前
父節點
當前提交
4d51be73d3
共有 1 個文件被更改,包括 4 次插入1 次删除
  1. 4 1
      packages/runtime-core/src/component.ts

+ 4 - 1
packages/runtime-core/src/component.ts

@@ -225,7 +225,10 @@ export interface ComponentInternalInstance {
 
   // the rest are only for stateful components ---------------------------------
 
-  // main proxy that serves as the public instance (`this`)
+  /**
+   * main proxy that serves as the public instance (`this`)
+   * @internal
+   */
   proxy: ComponentPublicInstance | null
 
   /**