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

Function getRealChild

static/vuejs/vue.runtime.esm.js:6460–6467  ·  view source on GitHub ↗
(vnode)

Source from the content-addressed store, hash-verified

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

Callers 1

vue.runtime.esm.jsFile · 0.70

Calls 1

getFirstComponentChildFunction · 0.70

Tested by

no test coverage detected