fix: the cache problem of tabs page; :bug:
修复:多页签页面缓存问题;
| | |
| | | <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> |
| | |
| | | </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> |