I have a menu in the sidebar (using vue-router):
<v-list>
<v-list-tile
value="true"
v-for="(item, i) in menu"
:key="i"
:to="item.path"
>
{{item.name}}
</v-list-tile>
</v-list>
and it works just fine, however I don't see anything in the Vuetify docs about highlighting the selected menu item. Any help is appreciated!
UPDATE: it turns out I am not very bright. setting value="true" property ensures all elements are always active, removing that resulted in proper function. duh!