Skip to content

Commit f5cd29e

Browse files
committed
fix: init _staticTrees to avoid runtime reference warning
fix #7075
1 parent 1e14603 commit f5cd29e

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

flow/component.js

+1
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ declare interface Component {
6666
_isDestroyed: boolean;
6767
_isBeingDestroyed: boolean;
6868
_vnode: ?VNode; // self root node
69+
_staticTrees: ?Array<VNode>; // v-once cached trees
6970
_hasHookEvent: boolean;
7071
_provided: ?Object;
7172

src/core/instance/render.js

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ import { isUpdatingChildComponent } from './lifecycle'
1717

1818
export function initRender (vm: Component) {
1919
vm._vnode = null // the root of the child tree
20+
vm._staticTrees = null // v-once cached trees
2021
const options = vm.$options
2122
const parentVnode = vm.$vnode = options._parentVnode // the placeholder node in parent tree
2223
const renderContext = parentVnode && parentVnode.context

0 commit comments

Comments
 (0)