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

Function invokeInsertHook

static/vuejs/vue.esm.js:4951–4961  ·  view source on GitHub ↗
(vnode, queue, initial)

Source from the content-addressed store, hash-verified

4949 }
4950
4951 function invokeInsertHook (vnode, queue, initial) {
4952 // delay insert hooks for component root nodes, invoke them after the
4953 // element is really inserted
4954 if (isTrue(initial) && isDef(vnode.parent)) {
4955 vnode.parent.data.pendingInsert = queue;
4956 } else {
4957 for (var i = 0; i < queue.length; ++i) {
4958 queue[i].data.hook.insert(queue[i]);
4959 }
4960 }
4961 }
4962
4963 var bailed = false;
4964 // list of modules that can skip create hook during hydration because they

Callers 1

createPatchFunctionFunction · 0.70

Calls 2

isTrueFunction · 0.70
isDefFunction · 0.70

Tested by

no test coverage detected