MCPcopy Create free account
hub / github.com/TruthHun/BookStack / createChildren

Function createChildren

static/vuejs/vue.runtime.js:4711–4719  ·  view source on GitHub ↗
(vnode, children, insertedVnodeQueue)

Source from the content-addressed store, hash-verified

4709 }
4710
4711 function createChildren (vnode, children, insertedVnodeQueue) {
4712 if (Array.isArray(children)) {
4713 for (var i = 0; i < children.length; ++i) {
4714 createElm(children[i], insertedVnodeQueue, vnode.elm, null, true);
4715 }
4716 } else if (isPrimitive(vnode.text)) {
4717 nodeOps.appendChild(vnode.elm, nodeOps.createTextNode(vnode.text));
4718 }
4719 }
4720
4721 function isPatchable (vnode) {
4722 while (vnode.componentInstance) {

Callers 2

createElmFunction · 0.70
hydrateFunction · 0.70

Calls 2

createElmFunction · 0.70
isPrimitiveFunction · 0.70

Tested by

no test coverage detected