chore: use const instead of let (#283)

This commit is contained in:
fisker Cheung 2019-10-15 11:15:36 +08:00 committed by Evan You
parent e5d60a0f7a
commit 1fbb4d22fa

View File

@ -7,7 +7,7 @@ type ComponentVNode = VNode & {
type: Component
}
let stack: VNode[] = []
const stack: VNode[] = []
type TraceEntry = {
vnode: ComponentVNode