比如: 我明明在 年终绩效,上级汇总这个菜单下, 刷新的时候 路由跳到了 季度绩效-上级汇总这个菜单下了
问了下 是因为没有设置key的原因 但是我设置了 发现 还是没啥效果
2个key的代码 都是这样设置的 求解答下
<template>
<router-view :key="key" />
</template>
<script>
export default {
computed: {
key() {
return this.$route.path
}
}
}
</script>