自学内容网 自学内容网

Vue 【跳转新页面后】 关闭当前标签页并返回指定页面 / 上一步路由

1.关闭当前标签页并返回指定页面:

// 调用全局挂载的方法,关闭当前页
this.$store.dispatch("tagsView/delView", this.$route)
// 关闭之后跳转你要跳转的路由
this.$router.push({ path: '要跳转的页面路径' })
// 或者
this.$router.push({ name: '要跳转的页面名称' })

2.关闭当前标签页并返回上一步路由:

 // 调用全局挂载的方法,关闭当前页
 this.$store.dispatch("tagsView/delView", this.$route);
 // 返回上一步路由
 this.$router.go(-1)

原文地址:https://blog.csdn.net/Maxueyingying/article/details/136345029

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!