You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Slots option now supports scoped slots. The scope is passed in as props i.e. { slots: { foo: '<span>{{props.bah}}</span>' } }. 77
The on option now actually passes events into the component render function, rather than just adding them to the instance with vm.$on. This makes event testing more realistic (especially when dealing with render functions). 80
It is now possible to test extended components (rather than just plain object components). mount(Vue.extend(A).extend(B))81