File tree 1 file changed +5
-3
lines changed
1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -118,6 +118,11 @@ export function createRouterMatcher(
118
118
// otherwise, the first record is the original and others are aliases
119
119
originalMatcher = originalMatcher || matcher
120
120
if ( originalMatcher !== matcher ) originalMatcher . alias . push ( matcher )
121
+
122
+ // remove the route if named and only for the top record (avoid in nested calls)
123
+ // this works because the original record is the first one
124
+ if ( isRootAdd && record . name && ! isAliasRecord ( matcher ) )
125
+ removeRoute ( record . name )
121
126
}
122
127
123
128
// only non redirect records have children
@@ -136,9 +141,6 @@ export function createRouterMatcher(
136
141
// other alias (if any) need to reference this record when adding children
137
142
originalRecord = originalRecord || matcher
138
143
139
- // remove the route if named and only for the top record (avoid in nested calls)
140
- if ( isRootAdd && record . name ) removeRoute ( record . name )
141
-
142
144
insertMatcher ( matcher )
143
145
}
144
146
You can’t perform that action at this time.
0 commit comments