[Vuejs]-Going to child route does not persist VueX state

0👍

You need use router-link instead:

<v-list-item-title class="pb-2">
  <router-link :to="`/news/${id}`">
    {{ title }}
  </router-link>
</v-list-item-title>

Leave a comment