Skip to content

1.1.0

Compare
Choose a tag to compare
@jackmellis jackmellis released this 20 Sep 20:06
· 8 commits to master since this release
  • 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