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