*router-link 标签 中的 exact的属性 与 router-view标签 中的 :key="key" 可以精确匹配路由
1:html部分
<router-link
exact
class="btnLink"
:to="{
path:item.path,
query:{
flowEventId:flowEventId,
segmentId:segmentId,
notBackBtn:true,
hasBackBtn:false,
countDate:item.countDate,
processInstId:item.countDate,
}
}">
{{item.MenuName}}
</router-link>
<router-view :key="key"></router-view>
2:js部分
computed: {
key() {
return this.$route.path + new Date();
}
},