vue 路由跳转

intoDetail(row) {
  var routeData = this.$router.resolve({
     path: '/detail/custDetail',
     query: {id:123}
  });

window.open(routeData.href);
},

原文地址:https://www.cnblogs.com/weiqian/p/9037872.html