mirror of
https://github.com/iczer/vue-antd-admin
synced 2025-04-06 03:49:22 +08:00
fix: the cache problem of page with dynamic route; 🐛
修复:动态路由下页面缓存问题;
This commit is contained in:
parent
48bb1c4bb1
commit
805cd799f8
@ -1,7 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<page-toggle-transition :disabled="animate.disabled" :animate="animate.name" :direction="animate.direction">
|
<page-toggle-transition :disabled="animate.disabled" :animate="animate.name" :direction="animate.direction">
|
||||||
<keep-alive :exclude="dustbins" v-if="multiPage">
|
<keep-alive :exclude="dustbins" v-if="multiPage">
|
||||||
<router-view />
|
<router-view :key="$route.fullPath" />
|
||||||
</keep-alive>
|
</keep-alive>
|
||||||
<router-view v-else />
|
<router-view v-else />
|
||||||
</page-toggle-transition>
|
</page-toggle-transition>
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<page-toggle-transition :disabled="animate.disabled" :animate="animate.name" :direction="animate.direction">
|
<page-toggle-transition :disabled="animate.disabled" :animate="animate.name" :direction="animate.direction">
|
||||||
<keep-alive :exclude="dustbins" v-if="multiPage">
|
<keep-alive :exclude="dustbins" v-if="multiPage">
|
||||||
<router-view ref="page" />
|
<router-view :key="$route.fullPath" ref="page" />
|
||||||
</keep-alive>
|
</keep-alive>
|
||||||
<router-view ref="page" v-else />
|
<router-view ref="page" v-else />
|
||||||
</page-toggle-transition>
|
</page-toggle-transition>
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
<div class="tabs-view-content" :style="`margin-top: ${multiPage ? -24 : 0}px`">
|
<div class="tabs-view-content" :style="`margin-top: ${multiPage ? -24 : 0}px`">
|
||||||
<page-toggle-transition :disabled="animate.disabled" :animate="animate.name" :direction="animate.direction">
|
<page-toggle-transition :disabled="animate.disabled" :animate="animate.name" :direction="animate.direction">
|
||||||
<keep-alive :exclude="dustbins" v-if="multiPage">
|
<keep-alive :exclude="dustbins" v-if="multiPage">
|
||||||
<router-view />
|
<router-view :key="$route.fullPath" />
|
||||||
</keep-alive>
|
</keep-alive>
|
||||||
<router-view v-else />
|
<router-view v-else />
|
||||||
</page-toggle-transition>
|
</page-toggle-transition>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user