From 72c330e17fb752b478a0a642bbb4a1480e6892bb Mon Sep 17 00:00:00 2001 From: Manuel Riquelme Date: Sat, 8 Apr 2023 21:57:37 +0200 Subject: [PATCH] recalcular --- src/pages/IndexPage.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/IndexPage.vue b/src/pages/IndexPage.vue index 7fcc30f..e60bdde 100644 --- a/src/pages/IndexPage.vue +++ b/src/pages/IndexPage.vue @@ -22,7 +22,7 @@ const fecha = ref(""); const calcular = () => { let valor = 0; - valor = temp_max.value - humedad_relativa.value * 0.2; + valor = temp_max.value - humedad_relativa.value * 0.37; //console.log(Math.round(valor)); let hoy = new Date(); let newDate = date.addToDate(hoy, { days: Math.round(valor) });