fix(Link): only bind necessary slot props

This commit is contained in:
Benjamin Canac
2024-09-06 12:57:04 +02:00
parent aa34e3c141
commit 7fe7ff6fe2
2 changed files with 38 additions and 14 deletions

View File

@@ -6,12 +6,9 @@ export interface LinkBaseProps {
click?: (e: MouseEvent) => void
href?: string
navigate?: (e: MouseEvent) => void
route?: object
rel?: string
target?: string
isExternal?: boolean
isActive?: boolean
isExactActive?: boolean
}
</script>