top | item 21161326

(no title)

ru999gol | 6 years ago

I'm curious, I'm maintaining a similarly sized React app. What are the benefits of Vue (2) over React?

discuss

order

earthboundkid|6 years ago

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.