v2.0.0-beta.1
Pre-release
Pre-release
Breaking changes
- Data properties in
meteor
option can now only be functions returning the result. You no longer need to separate intoparams
andupdate
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
andMeteorData
components (docs)
Fixed
- Uninitialized data now displayed in vue devtools
$subReady
reactivity fix #26