From 134be791b56cb347d3b79f484dcf484f10236605 Mon Sep 17 00:00:00 2001 From: talkor Date: Sat, 8 Oct 2022 12:04:05 +0300 Subject: [PATCH] fix(VPHero): make text prop optional --- src/client/theme-default/components/VPHero.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/theme-default/components/VPHero.vue b/src/client/theme-default/components/VPHero.vue index 90c88968faf0..6b283761ab8e 100644 --- a/src/client/theme-default/components/VPHero.vue +++ b/src/client/theme-default/components/VPHero.vue @@ -11,7 +11,7 @@ export interface HeroAction { defineProps<{ name?: string - text: string + text?: string tagline?: string image?: DefaultTheme.ThemeableImage actions?: HeroAction[]