diff --git a/frontend/src/components/input/Button.vue b/frontend/src/components/input/Button.vue index c74aee770..b5a697d0d 100644 --- a/frontend/src/components/input/Button.vue +++ b/frontend/src/components/input/Button.vue @@ -45,6 +45,7 @@ export interface ButtonProps extends /* @vue-ignore */ BaseButtonProps { icon?: IconProp iconColor?: string loading?: boolean + disabled?: boolean shadow?: boolean wrap?: boolean } @@ -54,6 +55,7 @@ const props = withDefaults(defineProps(), { icon: undefined, iconColor: undefined, loading: false, + disabled: false, shadow: true, wrap: true, })