[Vuejs]-How to manage dialogs in different router-views?

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.

Leave a comment