Browse Source

fix(core): remove trailing comma in function signature (#10845)

Fix #10843
Eduardo San Martin Morote 5 years ago
parent
commit
579e1ff9df
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/core/vdom/create-component.js

+ 1 - 1
src/core/vdom/create-component.js

@@ -207,7 +207,7 @@ export function createComponent (
 
 
 export function createComponentInstanceForVnode (
 export function createComponentInstanceForVnode (
   vnode: any, // we know it's MountedComponentVNode but flow doesn't
   vnode: any, // we know it's MountedComponentVNode but flow doesn't
-  parent: any, // activeInstance in lifecycle state
+  parent: any // activeInstance in lifecycle state
 ): Component {
 ): Component {
   const options: InternalComponentOptions = {
   const options: InternalComponentOptions = {
     _isComponent: true,
     _isComponent: true,