Просмотр исходного кода

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

Fix #10843
Eduardo San Martin Morote 5 лет назад
Родитель
Сommit
579e1ff9df
1 измененных файлов с 1 добавлено и 1 удалено
  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 (
   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,