Three main frame

The difference between Vue and Angular and React is?
(Version constantly updated, the following differences there may not be quite right in my job used only vue, for angular and react very familiar.)
Difference 1. AngularJS with the
same point:
support instruction: built-in commands and custom instructions ; support the filter: built-in filters and custom filters; supports two-way data binding; do not support low-end browser.

Different points:
High cost AngularJS learning, such as increased Dependency Injection characteristics, and provides API Vue.js themselves are relatively simple and intuitive; in performance, the dependence on the data to make dirty AngularJS examination, the more so the slower Watcher; Vue .js-based tracking relies observation and the use of asynchronous queue update, all data is independent of the trigger.

2. React difference with the
same point:
React with a special JSX grammar, Vue.js component development is also respected in the preparation of .vue special file format, the file contents have some agreement, after both need to compile using; the central idea the same: everything components can be nested between component instance; provide reasonable hook function that allows developers to customize the processing requirements; not built columns AJAX, Route and other functions to the core package, but in way plug-in is loaded; support mixins characteristics of the component development.
Different points:
the Virtual will render the DOM using React results do dirty examination; Vue.js provides instructions, filters, etc. in the template can be very easily and quickly operated Virtual DOM.

Guess you like

Origin www.cnblogs.com/Su-feng-address/p/12130970.html