Currently, I have implemented a Vuetify VListItem in a NavigationDrawer with an on click listener that displays a menu in the div below. The menu is functioning properly - opening and closing as expected. However, it highlights on hover/click which I would prefer not to happen. I am uncertain about how to prevent this behavior and whether it is a part of Vuetify or Vue event handling.
<div>
<v-list-item @click='showMenu = !showMenu'>
<v-list-item-avatar>
<img src="https://randomuser.me/api/portraits/men/81.jpg">
</v-list-item-avatar>
<v-list-item-content
class='grey--text text--lighten-1'
>
{{ getUsername }}
</v-list-item-content>
</v-list-item>
</div>