From d86c01ff2d40b63cd72ad451a827859a040ad652 Mon Sep 17 00:00:00 2001 From: alfatta Date: Wed, 2 Oct 2024 15:32:36 +0700 Subject: [PATCH] Fix FWBInput does not support v-model.number (#273) --- src/components/FwbInput/FwbInput.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/FwbInput/FwbInput.vue b/src/components/FwbInput/FwbInput.vue index 962ad294..2fef7c8c 100644 --- a/src/components/FwbInput/FwbInput.vue +++ b/src/components/FwbInput/FwbInput.vue @@ -58,7 +58,7 @@ import { interface InputProps { disabled?: boolean label?: string - modelValue: string + modelValue: string | number required?: boolean size?: InputSize type?: InputType