Skip to content

Commit fffa585

Browse files
committed
fix(link): preserve the alias path
1 parent b7d030e commit fffa585

File tree

3 files changed

+22
-5
lines changed

3 files changed

+22
-5
lines changed

__tests__/RouterLink.spec.ts

+20-3
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ const locations: Record<
5454
hash: '',
5555
matched: [records.home],
5656
redirectedFrom: undefined,
57-
name: undefined,
57+
name: 'home',
5858
},
5959
},
6060
foo: {
@@ -131,7 +131,7 @@ const locations: Record<
131131
hash: '',
132132
matched: [records.homeAlias],
133133
redirectedFrom: undefined,
134-
name: undefined,
134+
name: 'home',
135135
},
136136
},
137137

@@ -564,7 +564,24 @@ describe('RouterLink', () => {
564564
wrapper.find('a')!.click()
565565
await nextTick()
566566
expect(router.push).toHaveBeenCalledTimes(1)
567-
expect(router.push).toHaveBeenCalledWith(locations.basic.normalized)
567+
})
568+
569+
it('calls router.push with the correct location for aliases', async () => {
570+
const { router, wrapper } = await factory(
571+
START_LOCATION_NORMALIZED,
572+
{ to: locations.alias.string },
573+
locations.alias.normalized
574+
)
575+
wrapper.find('a')!.click()
576+
await nextTick()
577+
expect(router.push).toHaveBeenCalledTimes(1)
578+
expect(router.push).not.toHaveBeenCalledWith(
579+
expect.objectContaining({
580+
// this is the original name but if we push with this location, we will
581+
// not have the alias on the url
582+
name: 'home',
583+
})
584+
)
568585
})
569586

570587
describe('v-slot', () => {
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`RouterLink v-slot provides information on v-slot 1`] = `"<a aria-current=\\"page\\" href=\\"/home\\" class=\\"router-link-active router-link-exact-active\\"><span> route: {\\"href\\":\\"/home\\",\\"fullPath\\":\\"/home\\",\\"path\\":\\"/home\\",\\"params\\":{},\\"meta\\":{},\\"query\\":{},\\"hash\\":\\"\\",\\"matched\\":[{}]} href: \\"/home\\" isActive: \\"true\\" isExactActive: \\"true\\" </span></a>"`;
3+
exports[`RouterLink v-slot provides information on v-slot 1`] = `"<a aria-current=\\"page\\" href=\\"/home\\" class=\\"router-link-active router-link-exact-active\\"><span> route: {\\"href\\":\\"/home\\",\\"fullPath\\":\\"/home\\",\\"path\\":\\"/home\\",\\"params\\":{},\\"meta\\":{},\\"query\\":{},\\"hash\\":\\"\\",\\"matched\\":[{}],\\"name\\":\\"home\\"} href: \\"/home\\" isActive: \\"true\\" isExactActive: \\"true\\" </span></a>"`;

src/components/Link.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export function useLink(props: UseLinkOptions) {
5656

5757
function navigate(e: MouseEvent = {} as MouseEvent) {
5858
// TODO: handle navigate with empty parameters for scoped slot and composition api
59-
if (guardEvent(e)) router.push(route.value)
59+
if (guardEvent(e)) router.push(unref(props.to))
6060
}
6161

6262
return {

0 commit comments

Comments
 (0)