方法一:

this.$store.dispatch('delVisitedViews', this.$route);
          this.$router.go(-1);

方法二:

this.$store.state.tagsView.visitedViews.splice(this.$store.state.tagsView.visitedViews.findIndex(item => item.path === this.$route.path), 1)
          this.$router.push(this.$store.state.tagsView.visitedViews[this.$store.state.tagsView.visitedViews.length-1].path)

 

Logo

前往低代码交流专区

更多推荐