Commit 92a0f30c44ab98d65ea57d785e0570b61663daaa

Authored by jingsam
1 parent 1212d3da

fixup

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
src/components/transfer/transfer.vue
... ... @@ -51,7 +51,7 @@
51 51 render (createElement) {
52 52  
53 53 function cloneVNode (vnode) {
54   - const clonedChildren = vnode.children && vnode.children.map(vnode => cloneVNode(vnode)) || vnode.text;
  54 + const clonedChildren = vnode.children && vnode.children.map(vnode => cloneVNode(vnode));
55 55 const cloned = createElement(vnode.tag, vnode.data, clonedChildren);
56 56 cloned.text = vnode.text;
57 57 cloned.isComment = vnode.isComment;
... ...