From 7da38ff6da30b593f9d2d17f9149c606ae7a87eb Mon Sep 17 00:00:00 2001 From: Shyam-Chen Date: Tue, 1 Oct 2024 10:03:11 +0800 Subject: [PATCH] 1,564th Commit --- ui/src/components/button/Button.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/components/button/Button.vue b/ui/src/components/button/Button.vue index cebcd3a1..59e2a778 100644 --- a/ui/src/components/button/Button.vue +++ b/ui/src/components/button/Button.vue @@ -5,7 +5,6 @@ import { ref, computed, watchEffect, inject, useTemplateRef } from 'vue'; import Spinner from '../spinner/Spinner.vue'; interface Props extends /* @vue-ignore */ Omit { - disabled?: ButtonHTMLAttributes['disabled']; label?: string; icon?: string; variant?: 'contained' | 'outlined' | 'text'; @@ -14,6 +13,7 @@ interface Props extends /* @vue-ignore */ Omit prepend?: string; append?: string; loading?: boolean; + disabled?: boolean; } defineProps();