I am trying to bind some data property (isMenuActive) in the outer scope of a v-autocomplete component to the visibility state of its implicitly created v-menu, independently of what triggers de opening or closing of this menu. So there is no need for a two-way data binding, I only need the isMenuActive state to change when the menu toggles, not the other way around.
I am wondering if there is a possibility to pass some callback function via the menu-props attribute:
<v-autocomplete :menu-props="{ '???': function (value) { this.isMenuActive = value; } }">
There seem to be no appropriate events for this purpose either.