From 501fa1bc935457af174d385f9cdf692c3b48fe19 Mon Sep 17 00:00:00 2001 From: J-Sek Date: Tue, 3 Dec 2024 11:20:50 +0100 Subject: [PATCH] fix(VChip): utilize `active-class` (#20716) --- packages/vuetify/src/components/VChip/VChip.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/vuetify/src/components/VChip/VChip.tsx b/packages/vuetify/src/components/VChip/VChip.tsx index ad36f615d76..0aac78b625b 100644 --- a/packages/vuetify/src/components/VChip/VChip.tsx +++ b/packages/vuetify/src/components/VChip/VChip.tsx @@ -186,6 +186,7 @@ export const VChip = genericComponent()({ 'v-chip--link': isClickable.value, 'v-chip--filter': hasFilter, 'v-chip--pill': props.pill, + [`${props.activeClass}`]: props.activeClass && link.isActive?.value, }, themeClasses.value, borderClasses.value,