Skip to content

Commit bed24df

Browse files
committed
fix(warn): drop unused params on string redirect
Fix #951
1 parent 69709f5 commit bed24df

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

__tests__/router.spec.ts

+18
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ const routes: RouteRecordRaw[] = [
3636
{ path: '/p/:p', name: 'Param', component: components.Bar },
3737
{ path: '/repeat/:r+', name: 'repeat', component: components.Bar },
3838
{ path: '/to-p/:p', redirect: to => `/p/${to.params.p}` },
39+
{ path: '/redirect-with-param/:p', redirect: () => `/` },
3940
{ path: '/before-leave', component: components.BeforeLeave },
4041
{
4142
path: '/parent',
@@ -624,6 +625,23 @@ describe('Router', () => {
624625
})
625626
})
626627

628+
it('discard params on string redirect', async () => {
629+
const history = createMemoryHistory()
630+
const router = createRouter({ history, routes })
631+
await expect(router.push('/redirect-with-param/test')).resolves.toEqual(
632+
undefined
633+
)
634+
expect(router.currentRoute.value).toMatchObject({
635+
params: {},
636+
query: {},
637+
hash: '',
638+
redirectedFrom: expect.objectContaining({
639+
fullPath: '/redirect-with-param/test',
640+
params: { p: 'test' },
641+
}),
642+
})
643+
})
644+
627645
it('allows object in redirect', async () => {
628646
const history = createMemoryHistory()
629647
const router = createRouter({ history, routes })

src/router.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -577,7 +577,11 @@ export function createRouter(options: RouterOptions): Router {
577577
newTargetLocation.indexOf('?') > -1 ||
578578
newTargetLocation.indexOf('#') > -1
579579
? (newTargetLocation = locationAsObject(newTargetLocation))
580-
: { path: newTargetLocation }
580+
: // force empty params
581+
{ path: newTargetLocation }
582+
// @ts-expect-error: force empty params when a string is passed to let
583+
// the router parse them again
584+
newTargetLocation.params = {}
581585
}
582586

583587
if (

0 commit comments

Comments
 (0)