(vnode)
| 6815 | |
| 6816 | // recursively search for possible transition defined inside the component root |
| 6817 | function locateNode (vnode) { |
| 6818 | return vnode.componentInstance && (!vnode.data || !vnode.data.transition) |
| 6819 | ? locateNode(vnode.componentInstance._vnode) |
| 6820 | : vnode |
| 6821 | } |
| 6822 | |
| 6823 | var show = { |
| 6824 | bind: function bind (el, ref, vnode) { |