From 80f2f62f722a5e4fffbc00c99a6debb2fa3f5046 Mon Sep 17 00:00:00 2001 From: Claudio La Barbera Date: Wed, 11 Sep 2024 02:15:17 +0200 Subject: [PATCH] fix: buttons --- src/components/views/Home.vue | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/components/views/Home.vue b/src/components/views/Home.vue index 705cf21..c313136 100644 --- a/src/components/views/Home.vue +++ b/src/components/views/Home.vue @@ -53,6 +53,14 @@ const viewTransaction = () => { modalOpen.value = false; } +const incrementAmount = () => { + amount.value += 0.1; +} + +const decrementAmount = () => { + amount.value -= 0.1; +} + onMounted(async () => { await store.telegram.initConnectWalletButton('ton-connect-button') @@ -84,7 +92,7 @@ onMounted(async () => {
-