How can I change the behaviour of a b-dropdown-item-button within a b-dropdown-component so that it does not close automatically when I click on it?
The dropdown is syntactically structured as follows:
<b-dropdown>
<b-dropdown-item-button>
<span>Mark as read</span>
<b-dropdown-item-button>
<b-dropdown-group>
// Messages are output here
</b-dropdown-group>
</bdropdown>
Now I wonder how I can prevent the dropdown from closing when I click on the b-dropdown-item-button.