fix: the cache problem of page with dynamic route; 🐛

修复:动态路由下页面缓存问题;
This commit is contained in:
iczer 2020-08-05 13:42:53 +08:00
parent 48bb1c4bb1
commit 805cd799f8
3 changed files with 3 additions and 3 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 />
<router-view :key="$route.fullPath" />
</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 ref="page" />
<router-view :key="$route.fullPath" ref="page" />
</keep-alive>
<router-view ref="page" v-else />
</page-toggle-transition>

View File

@ -18,7 +18,7 @@
<div class="tabs-view-content" :style="`margin-top: ${multiPage ? -24 : 0}px`">
<page-toggle-transition :disabled="animate.disabled" :animate="animate.name" :direction="animate.direction">
<keep-alive :exclude="dustbins" v-if="multiPage">
<router-view />
<router-view :key="$route.fullPath" />
</keep-alive>
<router-view v-else />
</page-toggle-transition>