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 () => {
-