Skip to content

Commit 4cae9db

Browse files
committed
fix(link): allow attrs to override behavior
1 parent e9eb648 commit 4cae9db

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/components/Link.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,11 @@ export const Link = defineComponent({
8787
return h(
8888
'a',
8989
{
90-
...attrs,
91-
class: elClass.value,
90+
'aria-current': link.isExactActive ? 'page' : null,
9291
onClick: link.navigate,
9392
href: link.href,
93+
...attrs,
94+
class: elClass.value,
9495
},
9596
slots.default && slots.default(link)
9697
)

0 commit comments

Comments
 (0)