We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e14603 commit f5cd29eCopy full SHA for f5cd29e
flow/component.js
@@ -66,6 +66,7 @@ declare interface Component {
66
_isDestroyed: boolean;
67
_isBeingDestroyed: boolean;
68
_vnode: ?VNode; // self root node
69
+ _staticTrees: ?Array<VNode>; // v-once cached trees
70
_hasHookEvent: boolean;
71
_provided: ?Object;
72
src/core/instance/render.js
@@ -17,6 +17,7 @@ import { isUpdatingChildComponent } from './lifecycle'
17
18
export function initRender (vm: Component) {
19
vm._vnode = null // the root of the child tree
20
+ vm._staticTrees = null // v-once cached trees
21
const options = vm.$options
22
const parentVnode = vm.$vnode = options._parentVnode // the placeholder node in parent tree
23
const renderContext = parentVnode && parentVnode.context
0 commit comments