Răsfoiți Sursa

createElement won't return Array<VNode> (#3574)

Zhenfei You 9 ani în urmă
părinte
comite
2998bbfae9
1 a modificat fișierele cu 2 adăugiri și 2 ștergeri
  1. 2 2
      src/core/vdom/create-element.js

+ 2 - 2
src/core/vdom/create-element.js

@@ -12,7 +12,7 @@ export function createElement (
   tag: any,
   data: any,
   children: any
-): VNode | Array<VNode> | void {
+): VNode | void {
   if (data && (Array.isArray(data) || typeof data !== 'object')) {
     children = data
     data = undefined
@@ -26,7 +26,7 @@ function _createElement (
   tag?: string | Class<Component> | Function | Object,
   data?: VNodeData,
   children?: VNodeChildren | void
-): VNode | Array<VNode> | void {
+): VNode | void {
   if (data && data.__ob__) {
     process.env.NODE_ENV !== 'production' && warn(
       `Avoid using observed data object as vnode data: ${JSON.stringify(data)}\n` +