diff --git a/components/common/CommonInput.vue b/components/common/CommonInput.vue index 07ed2a23..33f61123 100644 --- a/components/common/CommonInput.vue +++ b/components/common/CommonInput.vue @@ -1,30 +1,24 @@ @@ -60,9 +54,4 @@ function updateValue(newValue) { if (newValue < props.min) return; emit("update:modelValue", newValue); } - -function onInput(e) { - const newValue = Number(e.target.value); - updateValue(newValue); -}