Skip to content

v2.0.0-beta.3

Pre-release
Pre-release
Compare
Choose a tag to compare
@Akryum Akryum released this 14 May 02:45
· 16 commits to master since this release

Breaking changes

  • meteor: { subscribe: { ... } } (without the $ sign) will no longer subscribe and will be considered as a data prop.
  • this.$subscribe arguments are now name (string) and params (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).