记录--keep-alive实现路由页面缓存

keep-alive实现路由页面缓存

<template>
  <section class="app-main" style="min-height: 100%">
    <transition name="main-transform" mode="out-in">
      <keep-alive>
        <router-view />
      </keep-alive>
    </transition>
  </section>
</template>

  

原文地址:https://www.cnblogs.com/qlnx/p/13994597.html