+ 3
What is the type of information shared between the View and ViewModel in MVVM
I am trying to understand MVVM. I like the idea of separating the UI from the data-layer. But I still do not really understand How does the ViewModel communicate and share information with the View.
2 Respuestas
+ 3
View and Model comunicate using ViewModel and binding events https://addyosmani.com/blog/understanding-mvvm-a-guide-for-javascript-developers/
+ 1
Thanks. I will read the article.
I do understand the concept of view - viewmodel - model.
My question is :
What information is passed and shared between View and Viewmodel