From 630e54191a3777a5dffd7e642e3680250eecc823 Mon Sep 17 00:00:00 2001 From: w3bdesign <45217974+w3bdesign@users.noreply.github.com> Date: Mon, 30 Jun 2025 04:32:00 +0200 Subject: [PATCH] Improve design --- components/common/CommonInput.vue | 35 +++++++++++-------------------- 1 file changed, 12 insertions(+), 23 deletions(-) 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); -}