由于动态路由加载的状态未被 Vue Router 及时更新导致的
- 强制 Vue Router 重新渲染组件
在 App.vue
或主布局文件中,添加 key
属性来强制组件重新渲染
<template>
<router-view :key="$route.fullPath"></router-view>
</template>
由于动态路由加载的状态未被 Vue Router 及时更新导致的
在 App.vue
或主布局文件中,添加 key
属性来强制组件重新渲染
<template>
<router-view :key="$route.fullPath"></router-view>
</template>