保誠-保戶業務員媒合平台
HelenHuang
2022-06-09 9bdb95c9e34cef640534e5e5a1e2225a80442000
PAMapp/node_modules/vue-router/dist/vue-router.js
@@ -1,6 +1,6 @@
/*!
  * vue-router v3.5.2
  * (c) 2021 Evan You
  * vue-router v3.5.4
  * (c) 2022 Evan You
  * @license MIT
  */
(function (global, factory) {
@@ -524,7 +524,7 @@
  }
  function cleanPath (path) {
    return path.replace(/\/\//g, '/')
    return path.replace(/\/(?:\s*\/)+/g, '/')
  }
  var isarray = Array.isArray || function (arr) {
@@ -1455,7 +1455,7 @@
          warn(
            false,
            "Named Route '" + (route.name) + "' has a default child route. " +
              "When navigating to this named route (:to=\"{name: '" + (route.name) + "'\"), " +
              "When navigating to this named route (:to=\"{name: '" + (route.name) + "'}\"), " +
              "the default child route will not be rendered. Remove the name from " +
              "this route and use the name of the default child route for named " +
              "links instead."
@@ -2316,7 +2316,9 @@
            cb(err);
          });
        } else {
          warn(false, 'uncaught error during route navigation:');
          {
            warn(false, 'uncaught error during route navigation:');
          }
          console.error(err);
        }
      }
@@ -2331,6 +2333,9 @@
      route.matched[lastRouteIndex] === current.matched[lastCurrentIndex]
    ) {
      this.ensureURL();
      if (route.hash) {
        handleScroll(this.router, current, route, false);
      }
      return abort(createNavigationDuplicatedError(current, route))
    }
@@ -2894,6 +2899,9 @@
  var VueRouter = function VueRouter (options) {
    if ( options === void 0 ) options = {};
    {
      warn(this instanceof VueRouter, "Router must be called with the new operator.");
    }
    this.app = null;
    this.apps = [];
    this.options = options;
@@ -3137,7 +3145,7 @@
  }
  VueRouter.install = install;
  VueRouter.version = '3.5.2';
  VueRouter.version = '3.5.4';
  VueRouter.isNavigationFailure = isNavigationFailure;
  VueRouter.NavigationFailureType = NavigationFailureType;
  VueRouter.START_LOCATION = START;