MCPcopy Create free account
hub / github.com/ygs-code/vue / locateNode

Function locateNode

vue.js:11778–11782  ·  view source on GitHub ↗
(vnode)

Source from the content-addressed store, hash-verified

11776
11777 // recursively search for possible transition defined inside the component root
11778 function locateNode(vnode) {
11779 return vnode.componentInstance && (!vnode.data || !vnode.data.transition)
11780 ? locateNode(vnode.componentInstance._vnode)
11781 : vnode
11782 }
11783
11784 var show = {
11785 bind: function bind(el, ref, vnode) {

Callers 1

vue.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected