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