We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 084e778 commit c8fc6d1Copy full SHA for c8fc6d1
src/util/route.js
@@ -118,8 +118,8 @@ function isObjectEqual (a = {}, b = {}): boolean {
118
119
export function isIncludedRoute (current: Route, target: Route): boolean {
120
return (
121
- current.path.replace(trailingSlashRE, '/').indexOf(
122
- target.path.replace(trailingSlashRE, '/')
+ current.path.replace(trailingSlashRE, '/').toLowerCase().indexOf(
+ target.path.replace(trailingSlashRE, '/').toLowerCase()
123
) === 0 &&
124
(!target.hash || current.hash === target.hash) &&
125
queryIncludes(current.query, target.query)
0 commit comments