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

Function getRealChild

static/vuejs/vue.common.js:6910–6917  ·  view source on GitHub ↗
(vnode)

Source from the content-addressed store, hash-verified

6908// in case the child is also an abstract component, e.g. <keep-alive>
6909// we want to recursively retrieve the real component to be rendered
6910function getRealChild (vnode) {
6911 var compOptions = vnode && vnode.componentOptions;
6912 if (compOptions && compOptions.Ctor.options.abstract) {
6913 return getRealChild(getFirstComponentChild(compOptions.children))
6914 } else {
6915 return vnode
6916 }
6917}
6918
6919function extractTransitionData (comp) {
6920 var data = {};

Callers 1

vue.common.jsFile · 0.70

Calls 1

getFirstComponentChildFunction · 0.70

Tested by

no test coverage detected