recently learned about the difference between react and vue, and read some blog posts, which roughly means: both react and vue are unidirectional data streams, but vue has bidirectional data binding, react does not. The two-way data binding I understand is the addition of listening events to individual data bindings for controls that can be entered (input, select, etc.).
The v-model ofvue is just a syntactic sugar, and react can also implement this grammatical sugar. How does this become the difference between vue and react? If this statement is wrong, what is the difference between vue and react? (in terms of data binding and data rendering)
Thank you very much!