File tree 2 files changed +9
-3
lines changed
2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ export function useLink(props: UseLinkOptions) {
31
31
const href = computed ( ( ) => router . createHref ( route . value ) )
32
32
33
33
const activeRecordIndex = computed < number > ( ( ) => {
34
+ // TODO: handle children with empty path: they should relate to their parent
34
35
const currentMatched = route . value . matched [ route . value . matched . length - 1 ]
35
36
return router . currentRoute . value . matched . findIndex (
36
37
isSameRouteRecord . bind ( null , currentMatched )
Original file line number Diff line number Diff line change @@ -275,9 +275,6 @@ export function createRouter({
275
275
for ( const guard of record . leaveGuards ) {
276
276
guards . push ( guardToPromiseFn ( guard , to , from ) )
277
277
}
278
-
279
- // free the references
280
- record . instances = { }
281
278
}
282
279
283
280
// run the queue of per route beforeRouteLeave guards
@@ -333,6 +330,14 @@ export function createRouter({
333
330
334
331
// run the queue of per route beforeEnter guards
335
332
await runGuardQueue ( guards )
333
+
334
+ // TODO: add tests
335
+ // this should be done only if the navigation succeeds
336
+ // if we redirect, it shouldn't be done because we don't know
337
+ for ( const record of leavingRecords ) {
338
+ // free the references
339
+ record . instances = { }
340
+ }
336
341
}
337
342
338
343
/**
You can’t perform that action at this time.
0 commit comments