1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

laravelでbootstrap-vueを使う

Posted at

1.ターミナルにて下記コマンド実行

npm install vue bootstrap-vue bootstrap

2.src/resources/js/app.jsに下記コード追加

src/resources/js/app.js
import BootstrapVue from 'bootstrap-vue'
Vue.use(BootstrapVue)

3.もっと気軽に使いたい場合はCDNで
①head内に下記を記述

<link type="text/css" rel="stylesheet" href="https://unpkg.com/bootstrap-vue@latest/dist/bootstrap-vue.css">

②bodyの最後に先下記を記述

<script src="https://unpkg.com/bootstrap-vue@latest/dist/bootstrap-vue.js"></script>
1
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?