(vnode)
| 6363 | |
| 6364 | // recursively search for possible transition defined inside the component root |
| 6365 | function locateNode (vnode) { |
| 6366 | return vnode.componentInstance && (!vnode.data || !vnode.data.transition) |
| 6367 | ? locateNode(vnode.componentInstance._vnode) |
| 6368 | : vnode |
| 6369 | } |
| 6370 | |
| 6371 | var show = { |
| 6372 | bind: function bind (el, ref, vnode) { |