[Vuejs]-Close all dropdowns $root event

1👍

The guys at bootstrap-vue offered an undocumented way to do the same with another event:

this.$root.$emit('bv::link::clicked');

-1👍

You can do this on component instance


<b-dropdown ref="foo"></b-dropdown>


this.$refs.foo.hide();

Leave a comment