I am building a split-button like this one: https://codepen.io/mtermoul/pen/KKMPqvd,
<v-btn-toggle>
<v-btn>Edit Avatar</v-btn>
<v-menu offset-y>
<template v-slot:activator="{ on, attrs }">
<v-btn v-on="on" v-bind="attrs"><v-icon>arrow_drop_down</v-icon></v-btn>
</template>
<v-list>
<v-list-item>
<v-list-item-title>Copy from local</v-list-item-title>
</v-list-item>
</v-list>
</v-menu>
</v-btn-toggle>
But I don't want the buttons to remain in toggle state after the user clicks them.
Any idea about how to disable that behavior in the v-btn-toggle?