From d43fb835d82b06cf965d9a82abe50e40e6e493ed Mon Sep 17 00:00:00 2001 From: Benjamin Canac Date: Mon, 15 Jan 2024 16:01:58 +0100 Subject: [PATCH] chore(link): add missing props --- src/runtime/utils/link.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/runtime/utils/link.ts b/src/runtime/utils/link.ts index 7784f4c7..220593a7 100644 --- a/src/runtime/utils/link.ts +++ b/src/runtime/utils/link.ts @@ -62,6 +62,18 @@ export const nuxtLinkProps = { } as const const uLinkProps = { + as: { + type: String, + default: 'button' + }, + type: { + type: String, + default: 'button' + }, + disabled: { + type: Boolean, + default: null + }, active: { type: Boolean, default: undefined