其他分享
首页 > 其他分享> > 日常开发记录-点击按钮触发 close 方法关闭当前路由页面,跳转列表页

日常开发记录-点击按钮触发 close 方法关闭当前路由页面,跳转列表页

作者:互联网

关闭当前路由,跳转其他页面

close() {
      // 返回上级路由并关闭当前路由
      this.$store.state.tagsView.visitedViews.splice(this.$store.state.tagsView.visitedViews.findIndex(item => item.path === this.$route.path), 1)
      this.$router.push('目标页面的路由地址’)
    }

举例: 

目标页面的路由地址:'/test/list'

标签:state,路由,跳转,close,store,页面
来源: https://www.cnblogs.com/huguo/p/16688193.html