DEV Community

Discussion on: Why I let React go!

 
bravemaster619 profile image
bravemaster619

Coding in vue is more organized than in React. I think React is just-get-shit-done attitude. As you can see in this post, React lets us use raw javascript in rendering and binding events. Sometimes it feels more comfortable except when you have to bind inputs to states.

Thread Thread
 
adnanbabakan profile image
Adnan Babakan (he/him)

Hahaha, good explanation.
True! In React in case you want to handle a data change and use a two-way binding system you should have a function that is called through onChange event on the input and then update its state while Vue has an attribute (directive) called v-model and that's all what you need!