fix: the cache problem of tabs page; 🐛

修复:多页签页面缓存问题;
This commit is contained in:
iczer 2020-08-05 19:54:15 +08:00
parent 1d85bd7a70
commit 523537953a
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
<template>
<page-toggle-transition :disabled="animate.disabled" :animate="animate.name" :direction="animate.direction">
<keep-alive :exclude="dustbins" v-if="multiPage">
<router-view :key="$route.fullPath" />
<router-view />
</keep-alive>
<router-view v-else />
</page-toggle-transition>

View File

@ -5,7 +5,7 @@
</div>
<page-toggle-transition :disabled="animate.disabled" :animate="animate.name" :direction="animate.direction">
<keep-alive :exclude="dustbins" v-if="multiPage">
<router-view :key="$route.fullPath" ref="page" />
<router-view ref="page" />
</keep-alive>
<router-view ref="page" v-else />
</page-toggle-transition>