Hacker News new | ask | show | jobs
by ru999gol 2446 days ago
I'm curious, I'm maintaining a similarly sized React app. What are the benefits of Vue (2) over React?
1 comments

It has a sane model for dealing with reactivity and doesn't insist on always using immediate mode. React runs into all these weird issues like stale closures because everything is always rendered every time. Vue just makes it all much simpler to grok because the setup function is only run once.