mirror of https://github.com/vuejs/core.git
chore: use `const` instead of `let` (#283)
This commit is contained in:
parent
e5d60a0f7a
commit
1fbb4d22fa
|
@ -7,7 +7,7 @@ type ComponentVNode = VNode & {
|
||||||
type: Component
|
type: Component
|
||||||
}
|
}
|
||||||
|
|
||||||
let stack: VNode[] = []
|
const stack: VNode[] = []
|
||||||
|
|
||||||
type TraceEntry = {
|
type TraceEntry = {
|
||||||
vnode: ComponentVNode
|
vnode: ComponentVNode
|
||||||
|
|
Loading…
Reference in New Issue