Route hops do not load the entire page
<keep-alive :include="cachedViews" v-if="key.includes('perFormance')||key.includes('testAnalyse')||key.includes('studentMark')"> <router-view :key="key" /> </keep-alive>Copy the code
The complete code
<template> <section class="app-main" :class="{'no-padl-padr': key === '/examManagement/signAnswerSheet','no-padl-padr': key === '/paperManage/subjectCorrect'}"> <keep-alive :include="cachedViews" v-if="key.includes('perFormance')||key.includes('testAnalyse')||key.includes('studentMark')"> <router-view :key="key" /> </keep-alive> <transition name="fade-transform" mode="out-in" :css="! isAnimate" v-else> <keep-alive :include="cachedViews"> <router-view :key="key" /> </keep-alive> </transition> <BackToTop /> </section> </template>Copy the code