Hacker News new | past | comments | ask | show | jobs | submit login

In Vue two way data binding, like v-model="var1" is syntax sugar for `v-bind="var1" v-on:input="var1 = $event.value"

The difference between this and rreact is less typing, easier mental model and less issues (because react calls render() multiple times)




You only have issues with render getting called multiple times if you use React incorrectly...


That is one way to look at it. The other way is that vue/svelte/solid do not have a way for them to be used incorrectly


Which are also just sugars for creating setter callbacks.




Consider applying for YC's Fall 2025 batch! Applications are open till Aug 4

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: