Skip to main content
.

Twitter Bootstrap 4 Components For Vue.js 2

Getting Started

Currently: 0.10.0-alpha.1

Easy to get started.

Quickly include packaged js inside your templates or use NPM.

NPM

Install via your favorite package manager

$ npm i bootstrap-vue@latest # OR $ yarn add bootstrap-vue@latest

Register components

import Vue from 'vue' import BootstrapVue from 'bootstrap-vue'; // Globally register bootstrap-vue components Vue.use(BootstrapVue);

CDN

Simply include js inside your HTML templates,(free CDN from Powered by unpkg)

<script src="https://unpkg.com/bootstrap-vue/dist/bootstrap-vue.js"></script>