liweilong
2020-12-16 7661a83ac24a39e84641438bac89cc24efe1561e
src/layout/components/AppMain.vue
@@ -1,7 +1,12 @@
<template>
  <section class="app-main">
    <transition name="fade-transform" mode="out-in">
      <router-view :key="key" />
      <div>
        <keep-alive>
          <router-view v-if="$route.meta.keepAlive" :key="key" />
        </keep-alive>
        <router-view v-if="!$route.meta.keepAlive" :key="key" />
      </div>
    </transition>
  </section>
</template>