Skip to content

Commit

Permalink
fix(core): remove trailing comma in function signature (#10845)
Browse files Browse the repository at this point in the history
Fix #10843
  • Loading branch information
posva committed Sep 21, 2020
1 parent 2f7209c commit 579e1ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/vdom/create-component.js
Expand Up @@ -207,7 +207,7 @@ export function createComponent (
export function createComponentInstanceForVnode (
vnode: any, // we know it's MountedComponentVNode but flow doesn't
parent: any, // activeInstance in lifecycle state
parent: any // activeInstance in lifecycle state
): Component {
const options: InternalComponentOptions = {
_isComponent: true,
Expand Down

0 comments on commit 579e1ff

Please sign in to comment.