3
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 1 year has passed since last update.

Vue3 Bootstrap インストール

Last updated at Posted at 2022-10-06

はじめに

Vue3でBoostrapのインストール方法について紹介する

インストール手順

  1. インストールバージョン確認
    Bootstrapのnpmパッケージ公開サイトよりインストール対象パージョンを確認する

    今回はBootstrap4.6をインストールするのでバージョンを指定してパッケージをインストールする
    バージョン指定なしだと最新バージョンがインストールされる

  2. インストールコマンド実行
    インストールコマンド

    npm install bootstrap@4.6.0
    
  3. Vueに適応するための設定を追加
    インストール後、Bootstrapを適応するためにmain.jsファイルに以下の内容を追加する

    import 'bootstrap/dist/css/bootstrap.min.css'
    import 'bootstrap/dist/js/bootstrap.min.js'
    

確認

  1. App.vueに以下のHTMLを追加

    <button type="button" class="btn btn-primary">Bootstrap</button>
    
  2. npm run serveでVueを起動

  3. 画面でボタンにBootstrapのスタイルが適応されていることを確認

Bootstrap-Button.png

3
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
3
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?