0👍
✅
In fact I should’ve used only one v-app
outside of router-view
in App.vue
file.
<template>
<!-- OVER HERE -->
<v-app>
<transition>
<keep-alive>
<router-view/>
</keep-alive>
</transition>
</v-app>
<!-- / OVER HERE -->
</template>
Works like a charm.
Source:stackexchange.com