Bootstrap

beforeRouteLeave函数返回页面重定向

beforeRouteLeave(to, from, next) {

    let path = to;

    if (this.isPay == true) {

      return next();

    } else if (this.isPay == false) {

      // next({ path: "/Mine" });

      if (path.name == "Mine") {

        next();

      } else {

        next({ path: "/Mine" });

      }

    }

  }

可以改变要返回的页面地址

;