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

Function getRealChild

static/vuejs/vue.esm.js:6908–6915  ·  view source on GitHub ↗
(vnode)

Source from the content-addressed store, hash-verified

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

Callers 1

vue.esm.jsFile · 0.70

Calls 1

getFirstComponentChildFunction · 0.70

Tested by

no test coverage detected