Comment Re:Vue framework is great. (Score 1) 72
At best, this statement is a gross oversimplification (that React/Vue "wrap" HTML) and at worst, completely wrong. React provides a construction library for the creation of a virtual DOM (which is not the same thing as HTML), and allows changes to the virtual DOM to reconciled with the actual DOM. Vue also uses a virtual DOM, but I have less experience with Vue and so can't speak authoritatively. React also provides a small-footprint programming paradigm and lifecycle management (again, similar to Vue).
There's a lot to like about Vue, but having used both, my team abandoned Vue for React, and have found much higher productivity and developer satisfaction with the latter.