From c6381c183c1627187ad4ac0dd47ad360c73207c3 Mon Sep 17 00:00:00 2001 From: Benjamin Canac Date: Sat, 9 Mar 2024 16:35:16 +0100 Subject: [PATCH] chore(Link): update --- src/runtime/components/Link.vue | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/runtime/components/Link.vue b/src/runtime/components/Link.vue index cac8e239..0b1890f3 100644 --- a/src/runtime/components/Link.vue +++ b/src/runtime/components/Link.vue @@ -23,8 +23,7 @@ defineOptions({ inheritAttrs: false }) const props = withDefaults(defineProps(), { as: 'button', - type: 'button', - inactiveClass: undefined + type: 'button' }) const forward = useForwardProps(reactiveOmit(props, 'as', 'type', 'disabled', 'active', 'exact', 'exactQuery', 'exactHash', 'inactiveClass'))