v2.0.0-beta.3
Pre-release
Pre-release
Breaking changes
meteor: { subscribe: { ... } }
(without the$
sign) will no longer subscribe and will be considered as a data prop.this.$subscribe
arguments are nowname
(string) andparams
(array or function returning an array).
Before:
this.$subscribe('my-sub', 1, 2, 3)
After:
this.$subscribe('my-sub', [1, 2, 3])
Or:
// Reactive params
this.$subscribe('my-sub', () => this.params)
New
- You can now use Meteor reactive data inside computed properties (docs).