From 20b9c80b45d08b802db006f79ac05d9b5c8e4f8d Mon Sep 17 00:00:00 2001 From: Mitchell Bryson Date: Mon, 5 Oct 2020 10:40:24 +0100 Subject: [PATCH] fix(dev): move comments (close #11703) --- src/core/vdom/create-component.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/core/vdom/create-component.js b/src/core/vdom/create-component.js index 977757c41f2..380902000df 100644 --- a/src/core/vdom/create-component.js +++ b/src/core/vdom/create-component.js @@ -206,8 +206,10 @@ export function createComponent ( } export function createComponentInstanceForVnode ( - vnode: any, // we know it's MountedComponentVNode but flow doesn't - parent: any // activeInstance in lifecycle state + // we know it's MountedComponentVNode but flow doesn't + vnode: any, + // activeInstance in lifecycle state + parent: any ): Component { const options: InternalComponentOptions = { _isComponent: true,