From bf1b2ace34ac64b0ef0762ee06de224df5b57bfa Mon Sep 17 00:00:00 2001 From: Dominik Pschenitschni Date: Fri, 20 May 2022 22:22:00 +0200 Subject: [PATCH] fix: button prop type --- src/components/input/button.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/input/button.vue b/src/components/input/button.vue index 07e0ad2f2..cae9bc15d 100644 --- a/src/components/input/button.vue +++ b/src/components/input/button.vue @@ -43,7 +43,7 @@ const props = defineProps({ default: 'primary', }, icon: { - type: String, + type: [String, Array], default: '', }, loading: { -- 2.40.1