fix(Link): allow title field

Resolves #1439
This commit is contained in:
Benjamin Canac
2024-09-27 12:50:18 +02:00
parent d324dee4f1
commit 0aa3909e71

View File

@@ -127,7 +127,7 @@ export const getNuxtLinkProps = (props) => {
}
export const getULinkProps = (props) => {
const keys = [...Object.keys(nuxtLinkProps), ...Object.keys(uLinkProps), 'ariaLabel']
const keys = [...Object.keys(nuxtLinkProps), ...Object.keys(uLinkProps), 'ariaLabel', 'title']
return keys.reduce((acc, key) => {
if (props[key] !== undefined) {