Hacker News new | ask | show | jobs
by crooked-v 2899 days ago
I would say the other big deciding influence is that Vue leans towards the idea of a persistent state object with watchers that you update in place, while React leans towards disposable state objects that you update by calling a method that re-renders with a new disposable state object.
1 comments

I use watchers as a last resort in Vue. It's possible and common to program in Vue using very functional style.