bootstrap click outside modal to close code example
Example 1: bootstrap vue modal do not close on click outside
<b-modal
no-close-on-backdrop
>
// code....
</b-modal>
Example 2: bootstrap modal prevent close
$('#myModal').modal({backdrop: 'static', keyboard: false})
Example 3: bootstrap modal not close
$('#MymodalPreventScript').modal({
backdrop: 'static',
keyboard: false
});