I am currently utilizing vuetify.js in my project and I encountered an issue. I wanted the application title to link to the top menu, but when navigating to /route shop and /discount, the HogeHoge button's state changed unexpectedly. Is there a solution to this problem?
<v-toolbar app>
<v-toolbar-title class="mr-5">
<v-btn flat to="/">HogeHoge</v-btn>
</v-toolbar-title>
<v-toolbar-items class="hidden-sm-and-down">
<v-btn flat to="/shop">shop</v-btn>
<v-btn flat to="/discount">discount</v-btn>
</v-toolbar-items>
</v-toolbar>