Description of bug
I have an instance of v-selectmenu that is toggled on/off using the Vuejs v-if directive. I also listen to the @values event on this component.
<v-selectmenu v-if="condition" @values="onValuesEvent" ...
If the component is hidden and re-rendered when condition changes from true to false to true, the @values event is no longer emitted!