cloud-web-corejs 1.0.54-dev.171 → 1.0.54-dev.172

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -467,6 +467,7 @@ export default {
467
467
  this.$router.push({path: path, query: {url: route.url}});
468
468
  } else {
469
469
  let path = this.getPath(route)
470
+ if(!path)return
470
471
  this.$router.push(path);
471
472
  }
472
473
  },
@@ -491,6 +492,9 @@ export default {
491
492
  let url = route3.route || route3.url;
492
493
  path = url;
493
494
  }
495
+ if (path && path.startsWith("@")) {
496
+ path = null
497
+ }
494
498
  return path;
495
499
  },
496
500
  jumpOutLink(route) {