- Notifications
You must be signed in to change notification settings - Fork189
Releases: vuejs/vue-rx
v6.2.0
Compare
v6.1.0
Compare
Assets2
Uh oh!
There was an error while loading.Please reload this page.
v6.0.1
Compare
Assets2
Uh oh!
There was an error while loading.Please reload this page.
v6.0.0
Compare
Features
- Support RxJS v6.
- Simplified installation: no longer need to pass in RxJS to
Vue.use()
. - ESM build:
dist/vue-rx.esm.js
is used by default in webpack/rollup bundles which imports the minimal amount of imports from RxJS for smaller bundle size.
BREAKING CHANGES
- vue-rx v6 now only works with RxJS v6 by default. If you want to keep using RxJS v5 style code, install
rxjs-compat
. - Dropped support for RxJS v4.
Assets2
Uh oh!
There was an error while loading.Please reload this page.
v5.0.0
Compare
Breaking Changes
- Updated TypeScript typings to be compatible with Vue core 2.5 typings. To use with Vue 2.4 and below, use 4.x.
Assets2
Uh oh!
There was an error while loading.Please reload this page.
v4.0.0
Compare
Breaking Change
- Errors from subscription streams will be thrown, and the user is now responsible for catching and handling these potential errors. (@regou via#55)
New
- Now ships with TypeScript typings! (@HerringtonDarkholme via#57)
Assets2
Uh oh!
There was an error while loading.Please reload this page.
v3.4.0
Compare
Assets2
Uh oh!
There was an error while loading.Please reload this page.
v3.3.0
Compare
Assets2
Uh oh!
There was an error while loading.Please reload this page.
v3.2.0
Compare
New
Similar to
v-on
,v-stream
can now also be used on components as well and will create observables from custom events emitted by the child component. (@regou)New method:$eventToObservable()
Turns custom events emitted by a component into an observable. (@regou)
Assets2
Uh oh!
There was an error while loading.Please reload this page.
v3.1.0
Compare
v-stream
now also accepts an extraoptions
object which will be passed along to nativeaddEventListener
as the 3rd argument.
Assets2
Uh oh!
There was an error while loading.Please reload this page.