Skip to content

Commit 3594011

Browse files
committed
fix(router): stack overflow with redirect
Close #404
1 parent 029622b commit 3594011

File tree

2 files changed

+26
-8
lines changed

2 files changed

+26
-8
lines changed

__tests__/router.spec.ts

+21-1
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ describe('Router', () => {
217217
})
218218

219219
it('navigates if the location does not exist', async () => {
220-
const { router } = await newRouter()
220+
const { router } = await newRouter({ routes: [routes[0]] })
221221
const spy = jest.fn((to, from, next) => next())
222222
router.beforeEach(spy)
223223
await router.push('/idontexist')
@@ -691,6 +691,26 @@ describe('Router', () => {
691691
path: '/parent',
692692
})
693693
})
694+
695+
// https://github.com/vuejs/vue-router-next/issues/404
696+
it('works with named routes', async () => {
697+
const history = createMemoryHistory()
698+
const router = createRouter({
699+
history,
700+
routes: [
701+
{ name: 'foo', path: '/foo', redirect: '/bar' },
702+
{ path: '/bar', component: components.Bar },
703+
],
704+
})
705+
await expect(router.push('/foo')).resolves.toEqual(undefined)
706+
const loc = router.currentRoute.value
707+
expect(loc.name).toBe(undefined)
708+
expect(loc.path).toBe('/bar')
709+
expect(loc.redirectedFrom).toMatchObject({
710+
name: 'foo',
711+
path: '/foo',
712+
})
713+
})
694714
})
695715

696716
describe('base', () => {

src/router.ts

+5-7
Original file line numberDiff line numberDiff line change
@@ -427,13 +427,11 @@ export function createRouter(options: RouterOptions): Router {
427427
}
428428
return pushWithRedirect(
429429
assign(
430-
{},
431-
// having a path here would be a problem with relative locations but
432-
// at the same time it doesn't make sense for a redirect to be
433-
// relative (no name, no path) because it would create an infinite
434-
// loop. Since newTargetLocation must either have a `path` or a
435-
// `name`, this will never happen
436-
targetLocation,
430+
{
431+
query: targetLocation.query,
432+
hash: targetLocation.hash,
433+
params: targetLocation.params,
434+
},
437435
newTargetLocation,
438436
{
439437
state: data,

0 commit comments

Comments
 (0)