Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/history/base.js
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down