Closed
Description
Right now it's quite difficult to replace Bootstraps default close button.
For example for the b-modal
you have to override the entire modal-header
to make a tiny change to the close button:
<b-modal>
<slot name="modal-header">
<h5 :is="titleTag" class="modal-title">
<slot name="modal-title">{{title}}</slot>
</h5>
<button type="button"
v-if="!hideHeaderClose"
class="close"
aria-label="headerCloseLabel"
@click="hide">
<span aria-hidden="true">{{headerCloseLabel}}</span>
</button>
</slot>
</b-modal>