From ccebbd59744e3c5fc9b8434eef2ad118d40a8ed2 Mon Sep 17 00:00:00 2001 From: paidge <paidge_cs@hotmail.com> Date: Wed, 29 Dec 2021 06:33:44 +0100 Subject: [PATCH] prevent inout vue to requery --- pages/inout.vue | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pages/inout.vue b/pages/inout.vue index 30f2848..8cc1fb1 100644 --- a/pages/inout.vue +++ b/pages/inout.vue @@ -18,6 +18,8 @@ <script> import gql from 'graphql-tag' +const today = Math.round(Date.now() /1000) + export default { data() { // Variables locales @@ -32,8 +34,7 @@ export default { text: 'Entrées et sorties', active: true } - ], - today : Math.round(Date.now() /1000) + ] } }, // Fonctions locales @@ -59,7 +60,7 @@ export default { } } } `, - variables(){return {start:this.today-86400*2,end:this.today}}, + variables(){return {start:today-86400*2,end:today}}, update (data) { let result = {'entrees':[],'sorties':[]} -- GitLab