Bootstrap-vue → Vue.js¶
インストール¶
1、環境¶
下記を参照
2、bootstrap-vueをインストール¶
1 2 3 4 5 | # NPM npm install bootstrap-vue # Yarn yarn add bootstrap-vue |
3、アプリのエントリーポイントにプラグインを登録¶
1 2 3 4 5 6 | import Vue from 'vue' import BootstrapVue from 'bootstrap-vue' Vue.use(BootstrapVue) import 'bootstrap/dist/css/bootstrap.css' import 'bootstrap-vue/dist/bootstrap-vue.css' |
使用方法¶
1、表示確認¶
下記の場合だと、ボタンが表示される。
1 | <button type="button" class="btn btn-primary"> Add </button> |