-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Closed
Description
If we have
<button id="del" type="button" class="btn btn-outline-secondary" title="Delete">
<i class="icon-cancel"></i>
</button>
<b-popover target="del" placement="left">
Confirm?
<button class="btn btn-warning" @click="delete">Yes</button>
<button class="btn btn-info" @click="closeConfirm">No</button>
</b-popover>
... no popover will be opened. If I remove the html from the button
<button id="del" type="button" class="btn btn-outline-secondary" title="Delete">
×
</button>
... the popover will be shown.
I understand that this may be due to some issues with not detecting click events when there is html inside the buttons but this was working in the previous versions of bootstrap-vue(if that can be in any help).