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

Function getRealChild

static/vuejs/vue.runtime.common.js:6462–6469  ·  view source on GitHub ↗
(vnode)

Source from the content-addressed store, hash-verified

6460// in case the child is also an abstract component, e.g. <keep-alive>
6461// we want to recursively retrieve the real component to be rendered
6462function getRealChild (vnode) {
6463 var compOptions = vnode && vnode.componentOptions;
6464 if (compOptions && compOptions.Ctor.options.abstract) {
6465 return getRealChild(getFirstComponentChild(compOptions.children))
6466 } else {
6467 return vnode
6468 }
6469}
6470
6471function extractTransitionData (comp) {
6472 var data = {};

Callers 1

Calls 1

getFirstComponentChildFunction · 0.70

Tested by

no test coverage detected