1) paste following code in https://bootstrap-vue.js.org/play/ 2) click dropdown 3) click tab drop down is not closed because tab eats the event with stopPropagation() ``` <b-tabs> <b-tab title="first" active> <br>I'm the first fading tab </b-tab> <b-tab title="second"> <br>I'm the second tab content </b-tab> </b-tabs> <b-dropdown text="Dropdown Button"> <b-dropdown-item>First Action</b-dropdown-item> <b-dropdown-item>Second Action</b-dropdown-item> </b-dropdown> ``` I think it should close on mouseDown or mouseUp event, instead of on click event