vue点击返回,关闭当前子页面
vue问题记录:vue点击返回,关闭当前子页面goBack() {this.$router.go(-1)// 返回//关闭子页面this.$store.state.tagsView.visitedViews.splice(this.$store.state.tagsView.visitedViews.findIndex(item => item.path === this.$route.pa
·
vue问题记录:vue点击返回,关闭当前子页面
goBack() {
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)
}
更多推荐
已为社区贡献2条内容
所有评论(0)