(parent, elm, ref)
| 4709 | } |
| 4710 | |
| 4711 | function insert (parent, elm, ref) { |
| 4712 | if (isDef(parent)) { |
| 4713 | if (isDef(ref)) { |
| 4714 | nodeOps.insertBefore(parent, elm, ref); |
| 4715 | } else { |
| 4716 | nodeOps.appendChild(parent, elm); |
| 4717 | } |
| 4718 | } |
| 4719 | } |
| 4720 | |
| 4721 | function createChildren (vnode, children, insertedVnodeQueue) { |
| 4722 | if (Array.isArray(children)) { |
no test coverage detected