4
5

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.

[bootstrap-vue]モーダルを閉じないようにしたい

Last updated at Posted at 2019-10-06

bootstrap-vueのモーダルを閉じないようにしたい! ということがありました。
案外いろいろ指定する必要があったので、備忘として残します。

結論だけ知りたい人へ

<b-modal ok-only hide-header-close no-close-on-backdrop no-close-on-esc>
とすればOK。(bootstrap-vue2.0.3にて確認)

"モーダルを閉じる" のいろいろ

特に何も指定しない場合、↓のようなモーダルが出てきます。
modal1.png

モーダルの閉じ方と、それを防ぐために指定するプロパティを以下にまとめます。

閉じ方 閉じるのを防ぐために指定するプロパティ 備考
右上の×ボタンを押す hide-header-close ボタンを非表示にする
Cancelボタンを押す ok-only ボタンを非表示にする
モーダルの外側(グレーアウトした部分)をクリック no-close-on-backdrop
キーボードのESCボタンを押す no-close-on-esc

全部指定してみた

前項のプロパティを全て指定すると、以下のようになります。
(コードはグレーアウト部分を参照)
modal4.png

最後に

今回の画像は、公式サイトのデモを利用しました。
コードを書き換えて動かすこともできるため、各プロパティの検証が手軽にできます。
神機能です。

4
5
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
4
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?