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

Function getRealChild

static/vuejs/vue.runtime.js:6456–6463  ·  view source on GitHub ↗
(vnode)

Source from the content-addressed store, hash-verified

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

Callers 1

vue.runtime.jsFile · 0.70

Calls 1

getFirstComponentChildFunction · 0.70

Tested by

no test coverage detected