fix(Link): prevent active="true" binding on html

This commit is contained in:
Benjamin Canac
2025-03-24 23:56:28 +01:00
parent b9983549a4
commit d73768b704
3 changed files with 55 additions and 54 deletions

View File

@@ -10,6 +10,7 @@ export interface LinkBaseProps {
navigate?: (e: MouseEvent) => void
target?: LinkProps['target']
rel?: LinkProps['rel']
active?: boolean
isExternal?: boolean
}
</script>