Skip to content

v2.0.0-beta.1

Pre-release
Pre-release
Compare
Choose a tag to compare
@Akryum Akryum released this 13 May 18:43
· 22 commits to master since this release

Breaking changes

  • Data properties in meteor option can now only be functions returning the result. You no longer need to separate into params and update functions since you can now use both Meteor and Vue reactive data in the function.

Before:

meteor: {
  selectedThread: {
    params () {
      return {
        id: this.selectedThreadId
      }
    },
    deep: true,
    update ({id}) {
      return Threads.findOne(id)
    }
  }
}

After:

meteor: {
  selectedThread () {
    return Threads.findOne(this.selectedThreadId)
  }
}

New

  • MeteorSub and MeteorData components (docs)

Fixed

  • Uninitialized data now displayed in vue devtools
  • $subReady reactivity fix #26