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

Function createChildren

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

Source from the content-addressed store, hash-verified

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