Skip to content

v2.0.0-beta.2

Pre-release
Pre-release
Compare
Choose a tag to compare
@Akryum Akryum released this 13 May 23:56
· 19 commits to master since this release

Breaking changes

  • An error will now be thrown if the key of a meteor data prop is already defined in data, props, etc.

Before:

export default {
  data () {
    return {
      notes: []
    }
  },

  meteor: {
    notes () {
      return Notes.find({})
    }
  }
}

After:

export default {
  meteor: {
    notes () {
      return Notes.find({})
    }
  }
}

Fixed

  • Tracker computation of a Meteor data prop is now invalidated instead of stopped when the Vue watcher is notified.