Open
Description
I wondered if it's possible to implement full-stack reactivity in meteor-vue-component, similar to how angular-meteor does it: https://www.angular-meteor.com/tutorials/socially/angular2/3-way-data-binding
Basically, what it does is to call the corresponding Collection.update/insert/etc functions when the data model changes. For example, a text field with a v-model
would not only update the client-side data, but through reactivity, also update the collection in the database.