From b2ebfad3692065d25ba1d6aad35c6ac8e9bb13fd Mon Sep 17 00:00:00 2001 From: Steffen Deusch Date: Tue, 13 Feb 2018 17:09:46 +0100 Subject: [PATCH] fix for #1862 --- src/history/base.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/history/base.js b/src/history/base.js index 0c90dafa7..eaf2f9a1a 100644 --- a/src/history/base.js +++ b/src/history/base.js @@ -100,7 +100,8 @@ export class History { if ( isSameRoute(route, current) && // in the case the route map has been dynamically appended to - route.matched.length === current.matched.length + route.matched.length === current.matched.length && + route.matched[0] === current.matched[0] ) { this.ensureURL() return abort()