DEV Community

Discussion on: Learning Vue as a React dev

Collapse
 
jackmellis profile image
Jack

Don't be a blind fanboy :)
This should be the main takeaway from this article 😁😁

The best thing about Vue, by far, is the reactivity system. No need for dependency arrays, and having to deep-compare props on every render. Honestly it’s kinda hard to go back to useCallback!

Collapse
 
vincentdorian profile image
Vincent

+1 to that. Now with defineModel() it will become even easier to make reactive components where you would usually need to use so proxy and computed value to update.

I personally started with Vue and it was quite difficult to get into React with the FCs. It just seemed much more complicated. 😬