Home  >  Article  >  Web Front-end  >  vue bootstrap difference

vue bootstrap difference

angryTom
angryTomOriginal
2019-08-01 14:23:016231browse

vue bootstrap difference

In the eyes of many people, bootstrap and vue are both front-end frameworks. In fact, they still have many differences. Bootstrap is a front-end page framework, used to quickly develop responsive pages, while vue is Front-end js library, componentizing front-end development.

BootStrap:

Features grid system, simple to use, easy to get started. Designed for responsive pages. 1 The code can be used to adapt to tablets and PCs.

The disadvantage is that there is a lack of a powerful set of systematic components (it was not available at the time of the investigation, but it is said that it is now). When I actually used it, it happened The problem of scope conflict is solved. If a complete set of components is not sorted out, development will be very tiring

If you want to know more about bootstrap, you can click:bootstrap tutorial

Vue:

The characteristic is that it stands on the shoulders of React and is better in many aspects. :

 1. Two-way binding of data. When the data changes, the page changes. When the page changes, the data also changes.

 2. The rendering of the page is said to be faster than React .

 3. Componentization (actually React also has componentization). This is a bit different from the componentization concept of BootStrap. Vue’s componentization has solved the problem of scope conflicts. In addition, js testing has become more professional (somewhat similar to junit).

 4. Single html development. Its development mode is an html, and then constantly replaces the corresponding component js to switch the display effect. Common js and css in html only need to be downloaded once, which is theoretically faster than the rendering of Iframe pages.

 5. Combined with webpack provided by node.js, etc., it can be done Systematic packaging and release.

The disadvantage is that it is relatively difficult to get started, and large-scale development requires the accumulation of systematic development.

If you want to know more For knowledge about Vue, you can click: Vue Video Tutorial

The above is the detailed content of vue bootstrap difference. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn