From c5d7bbb02d7d591d21f385c180683a40b9f705bc Mon Sep 17 00:00:00 2001 From: alisagerasimova Date: Tue, 17 Feb 2026 10:39:23 +0300 Subject: [PATCH 1/3] test --- src/App.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/App.vue b/src/App.vue index ae0e077..94a70a6 100644 --- a/src/App.vue +++ b/src/App.vue @@ -8,6 +8,7 @@ const clickCount = ref(1); // Счетчик нажатий const listOfTrips = ref([]) onMounted(()=>{ + for (let i = 0; i < 100; i++) { numbers.value.push({ variable: '', From dc8bef100fff31e48efbf1bbd2be370f72989210 Mon Sep 17 00:00:00 2001 From: alisagerasimova Date: Tue, 17 Feb 2026 10:58:20 +0300 Subject: [PATCH 2/3] =?UTF-8?q?=D0=A1=D0=B4=D0=B5=D0=BB=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=20=D0=BA=D0=BD=D0=BE=D0=BF=D0=BA=D1=83=20=D0=BE=D1=87=D0=B8?= =?UTF-8?q?=D1=81=D1=82=D0=BA=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.vue | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/App.vue b/src/App.vue index 94a70a6..6b3995c 100644 --- a/src/App.vue +++ b/src/App.vue @@ -54,6 +54,18 @@ function saveResult() { message: "Посмотри в консоли путь дрона. Ctrl + Shift + I или F12" }); } + +function cleanResult() { + numbers.value = [] + for (let i = 0; i < 100; i++) { + numbers.value.push({ + variable: '', + x: i % 10, + y: 9 - Math.floor(i / 10), + index: i + }); + } +}