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

Function createChildren

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

Source from the content-addressed store, hash-verified

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