Skip to content

Commit 874510b

Browse files
committed
feat(link): allow custom prop
1 parent bfaf1fa commit 874510b

File tree

2 files changed

+36
-11
lines changed

2 files changed

+36
-11
lines changed

__tests__/RouterLink.spec.ts

+21
Original file line numberDiff line numberDiff line change
@@ -576,5 +576,26 @@ describe('RouterLink', () => {
576576

577577
expect(el.innerHTML).toMatchSnapshot()
578578
})
579+
580+
it('renders an anchor by default', () => {
581+
const { el } = factory(
582+
locations.basic.normalized,
583+
{ to: locations.basic.string },
584+
locations.basic.normalized
585+
)
586+
587+
expect(el.children[0].tagName).toBe('A')
588+
expect(el.children).toHaveLength(1)
589+
})
590+
591+
it('can customize the rendering and remove the wrapping `a`', () => {
592+
const { el } = factory(
593+
locations.basic.normalized,
594+
{ to: locations.basic.string, custom: true },
595+
locations.basic.normalized
596+
)
597+
598+
expect(el.innerHTML).not.toContain('</a>')
599+
})
579600
})
580601
})

src/components/Link.ts

+15-11
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ export const Link = defineComponent({
8080
type: String,
8181
default: 'router-link-exact-active',
8282
},
83+
custom: Boolean,
8384
},
8485

8586
setup(props, { slots, attrs }) {
@@ -91,17 +92,20 @@ export const Link = defineComponent({
9192
}))
9293

9394
return () => {
94-
return h(
95-
'a',
96-
{
97-
'aria-current': link.isExactActive ? 'page' : null,
98-
onClick: link.navigate,
99-
href: link.href,
100-
...attrs,
101-
class: elClass.value,
102-
},
103-
slots.default && slots.default(link)
104-
)
95+
const children = slots.default && slots.default(link)
96+
return props.custom
97+
? children
98+
: h(
99+
'a',
100+
{
101+
'aria-current': link.isExactActive ? 'page' : null,
102+
onClick: link.navigate,
103+
href: link.href,
104+
...attrs,
105+
class: elClass.value,
106+
},
107+
children
108+
)
105109
}
106110
},
107111
})

0 commit comments

Comments
 (0)