vue-bootstrap-modal
Bootstrap style modal component for vue.

Usage
import Bootstrap.css
<link href="bootstrap.css"></link>
NOTE: By default, the modal style is pure bootstrap style, you can use any 3rd party bootstrap framework, like above GIF.
simple options:
<!--text content-->Modal Text<!--custom content-->Modal BodyModal HeaderModal TitleModal Footer
Props
props:show:type: BooleantwoWay: truedefault: falsetitle:type: Stringdefault: 'Modal'// Bootstrap small style modalsmall:type: Booleandefault: false// Bootstrap large style modallarge:type: Booleandefault: false// Bootstrap full style modalfull:type: Booleandefault: false// if it set false, click background will close modalforce:type: Booleandefault: false// vue transition nametransition:type: Stringdefault: 'modal'// [OK button] textokText:type: Stringdefault: 'OK'// [Cancel button] textcancelText:type: Stringdefault: 'Cancel'// [OK button] classNameokClass:type: Stringdefault: 'btn blue'// [Cancel button] classNamecancelClass:type: Stringdefault: 'btn red btn-outline'// automatically close when click [OK button]closeWhenOK:type: Booleandefault: false
License
MIT