We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08d37c0 commit a796529Copy full SHA for a796529
flow/component.js
@@ -27,7 +27,7 @@ declare interface Component {
27
$refs: { [key: string]: Component | Element | Array<Component | Element> | void };
28
$slots: { [key: string]: Array<VNode> };
29
$scopedSlots: { [key: string]: () => VNodeChildren };
30
- $vnode: VNode;
+ $vnode: VNode; // the placeholder node for the component in parent's render tree
31
$isServer: boolean;
32
$props: Object;
33
@@ -63,7 +63,7 @@ declare interface Component {
63
_isMounted: boolean;
64
_isDestroyed: boolean;
65
_isBeingDestroyed: boolean;
66
- _vnode: ?VNode;
+ _vnode: ?VNode; // self root node
67
_staticTrees: ?Array<VNode>;
68
_hasHookEvent: boolean;
69
_provided: ?Object;
0 commit comments