As a javascript newbie, what is the better option between Vue and React ?
hardy Answered question September 11, 2024
It depends.
But commonly vuejs is a full frontend framework, whereas reactjs is a dedicated view library.
This means that you must spend time to compose kinds of library to handle kinds of cases in React ecosystem, while vuejs has done all of these for you out of the box.
But one of the downsides of Vue is that you will face more concepts that you should be familiar with, whereas in reactjs there are less new concepts because reactjs tries to take get the most out of javascript.
If you don’t want to waste time in composing, then choose vuejs
hardy Answered question September 11, 2024