Can bootstrap be used with vue?

(*-*)浩
Release: 2019-07-18 11:11:48
Original
12073 people have browsed it

BootstrapVue

Can bootstrap be used with vue?

##Using Vue.js and the world’s most popular front-end CSS library — Bootstrap V4 Build responsive, mobile-first projects on the web.

License agreement: MIT (recommended learning:

Bootstrap video tutorial)

Development language: Java

Bootstrap-Vue is Vue.js 2.4 provides Bootstrap V4 components and the most comprehensive implementation of the grid system, with extensive automated WAI-ARIA accessibility markup.

Vue.js v2.6 is required, v2.6.10 recommended

Bootstrap v4.3 is required, v4.3.1 recommended

Important HTML Global variables

Bootstrap v4.3 CSS uses some important global styles and settings that you need to be aware of when using them, all of which are almost exclusively aimed at normalizing cross-browser styles.

Responsive meta tag

bootstrap v4.3 is developed for mobile first, in this strategy the code is first optimized for mobile devices and then css is used as needed Media queries to extend components. To ensure correct rendering and touch scaling on all devices, add a responsive viewport meta tag to your.

Copy after login

CSS Box Sizing

For simpler sizing in CSS, the global box sizing value switches from the content box to the border box. This ensures that the padding does not affect the final calculated width of the element, but it may cause problems with some third-party software such as Google Maps and Google Custom Search Engine.

In rare cases, you need to override it, please use the following:

.selector-for-some-widget { box-sizing: content-box; }
Copy after login
For more Bootstrap related technical articles, please visit the

Bootstrap Tutorialcolumn to learn!

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

Related labels:
source:php.cn
Statement of this Website
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!