Skip to content

Commit

Permalink
build: bundle 3.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
posva committed Aug 11, 2020
1 parent 2f57663 commit ec43c1e
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 16 deletions.
6 changes: 3 additions & 3 deletions dist/vue-router.common.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* vue-router v3.4.2
* vue-router v3.4.3
* (c) 2020 Evan You
* @license MIT
*/
Expand Down Expand Up @@ -980,7 +980,7 @@ function normalizeLocation (
}

// relative params
if (!next.path && (next.params || next.query || next.hash) && current) {
if (!next.path && next.params && current) {
next = extend({}, next);
next._normalized = true;
var params$1 = extend(extend({}, current.params), next.params);
Expand Down Expand Up @@ -3044,7 +3044,7 @@ function createHref (base, fullPath, mode) {
}

VueRouter.install = install;
VueRouter.version = '3.4.2';
VueRouter.version = '3.4.3';
VueRouter.isNavigationFailure = isNavigationFailure;
VueRouter.NavigationFailureType = NavigationFailureType;

Expand Down
6 changes: 3 additions & 3 deletions dist/vue-router.esm.browser.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* vue-router v3.4.2
* vue-router v3.4.3
* (c) 2020 Evan You
* @license MIT
*/
Expand Down Expand Up @@ -965,7 +965,7 @@ function normalizeLocation (
}

// relative params
if (!next.path && (next.params || next.query || next.hash) && current) {
if (!next.path && next.params && current) {
next = extend({}, next);
next._normalized = true;
const params = extend(extend({}, current.params), next.params);
Expand Down Expand Up @@ -3010,7 +3010,7 @@ function createHref (base, fullPath, mode) {
}

VueRouter.install = install;
VueRouter.version = '3.4.2';
VueRouter.version = '3.4.3';
VueRouter.isNavigationFailure = isNavigationFailure;
VueRouter.NavigationFailureType = NavigationFailureType;

Expand Down
4 changes: 2 additions & 2 deletions dist/vue-router.esm.browser.min.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/vue-router.esm.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* vue-router v3.4.2
* vue-router v3.4.3
* (c) 2020 Evan You
* @license MIT
*/
Expand Down Expand Up @@ -978,7 +978,7 @@ function normalizeLocation (
}

// relative params
if (!next.path && (next.params || next.query || next.hash) && current) {
if (!next.path && next.params && current) {
next = extend({}, next);
next._normalized = true;
var params$1 = extend(extend({}, current.params), next.params);
Expand Down Expand Up @@ -3042,7 +3042,7 @@ function createHref (base, fullPath, mode) {
}

VueRouter.install = install;
VueRouter.version = '3.4.2';
VueRouter.version = '3.4.3';
VueRouter.isNavigationFailure = isNavigationFailure;
VueRouter.NavigationFailureType = NavigationFailureType;

Expand Down
6 changes: 3 additions & 3 deletions dist/vue-router.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* vue-router v3.4.2
* vue-router v3.4.3
* (c) 2020 Evan You
* @license MIT
*/
Expand Down Expand Up @@ -984,7 +984,7 @@
}

// relative params
if (!next.path && (next.params || next.query || next.hash) && current) {
if (!next.path && next.params && current) {
next = extend({}, next);
next._normalized = true;
var params$1 = extend(extend({}, current.params), next.params);
Expand Down Expand Up @@ -3048,7 +3048,7 @@
}

VueRouter.install = install;
VueRouter.version = '3.4.2';
VueRouter.version = '3.4.3';
VueRouter.isNavigationFailure = isNavigationFailure;
VueRouter.NavigationFailureType = NavigationFailureType;

Expand Down
4 changes: 2 additions & 2 deletions dist/vue-router.min.js

Large diffs are not rendered by default.

0 comments on commit ec43c1e

Please sign in to comment.