Skip to content

Why I Chose React Over Vue - Steven Poulton

Updated: at 04:55 AM

A look at why immutability and functional workflow are better solutions than reactive state and domain-specific language

React and Vue are ostensibly very similar and I have shipped projects using both. They both use a virtual DOM and they are both narrowly-focused view libraries. They are both solutions to the same problem as reactive HTML rendering tools but I believe they have a single defining difference that cascades down through your entire workflow. React fully embraces Javascript, Vue does not.

A common mantra often heard amongst React users is “it’s just Javascript” and that’s very true. Vue just seems to have a lot of unnecessary magic which makes components more difficult to reason about.

Read more at Medium