1.jquery: This once is still the most popular web front-end JS library, but now whether domestic or foreign his utilization rate is gradually replaced by other JS libraries, with the browser vendors to HTML5 compliance and ECMA6 in the browser side of the implementation, The usage of jquery will be getting lower
2.vue: Is a rising front-end JS library that is a streamlined mvvm. Technically speaking, Vue.js focuses on the ViewModel layer of the MVVM model. It connects the view layer and the Model layer through two-way data binding, which renders the page view by manipulating the data. There are, of course, many other mvmm frameworks, such as angular,react, that are similar in nature and are based on the MVVM concept. However, Vue has a simple, fast, combination, compact, powerful and rapid rise with his unique advantages.
The comparison between jquery and Vue:
jquery uses selectors ($) to select DOM objects, assign them, value them, event bindings, and so on, in fact, the difference between native HTML is that it is easier to select and manipulate Dom objects, and the data and interface are together. For example, you need to get the contents of a label tag: $("lable").val();
It depends on the value of the DOM element.
Vue uses the Vue object to completely separate the data from the view. Manipulating the data eliminates the need to reference the corresponding DOM object, so that the data and view are detached, and they are bound to each other through the Vue object, the VM. This is the legendary MVVM.
The difference between jquery and Vue