aarondfrancis / vue-model

Model component for Vue.js
MIT License
855 stars 42 forks source link

Docs are unclear on whether properties are reactive. #27

Open robjbrain opened 6 years ago

robjbrain commented 6 years ago

Hey just reading through the readme it's unclear whether these models have Vue's reactivity?

For instance in your example of the is_aaron computed property. If you change the email and you have a v-if based on is_aaron would this update?

Similarly if you have a post and do:

{{ post.title }}

post.title = 'my new title' post.save()

Will the text in the h1 update?

It would be good if the docs were clearer on this?