Skip to content

Commit 690374b

Browse files
authored
build: unexpected token when running dev (#11704)
1 parent b51430f commit 690374b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/core/vdom/create-component.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,8 +206,10 @@ export function createComponent (
206206
}
207207

208208
export function createComponentInstanceForVnode (
209-
vnode: any, // we know it's MountedComponentVNode but flow doesn't
210-
parent: any // activeInstance in lifecycle state
209+
// we know it's MountedComponentVNode but flow doesn't
210+
vnode: any,
211+
// activeInstance in lifecycle state
212+
parent: any
211213
): Component {
212214
const options: InternalComponentOptions = {
213215
_isComponent: true,

0 commit comments

Comments
 (0)