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

Function createChildren

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

Source from the content-addressed store, hash-verified

4715 }
4716
4717 function createChildren (vnode, children, insertedVnodeQueue) {
4718 if (Array.isArray(children)) {
4719 for (var i = 0; i < children.length; ++i) {
4720 createElm(children[i], insertedVnodeQueue, vnode.elm, null, true);
4721 }
4722 } else if (isPrimitive(vnode.text)) {
4723 nodeOps.appendChild(vnode.elm, nodeOps.createTextNode(vnode.text));
4724 }
4725 }
4726
4727 function isPatchable (vnode) {
4728 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