Vue.js: Difference between revisions

Content deleted Content added
Ajtruex (talk | contribs)
No edit summary
Line 64:
=== React ===
React and Vue share many similarities. They both:
* utilize a virtual DOM (Since Vue 2.0)
* provide reactive and composable view components
* maintain focus in the core library, with concerns such as routing and global state management handled by companion libraries
 
When compared to React development, Vue can be integrated to an existing web application much more easily. Normally, a web application can
start using Vue immediately by simply including the Vue.js Javascript library. Usage with [[Webpack | Webpack]] or Browserify,
are not strictly necessarily. This is in stark contrast to React development where Usage with [[Webpack | Webpack]] and Babel is
unavoidable, therefore making converting existing web application much more difficult.
 
=== Angular ===