v2.0.0-beta.2
Pre-release
Pre-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.