Create loading screen

This commit is contained in:
enzoggqs
2022-11-30 11:52:46 -03:00
parent cb782e7f29
commit ea1e3d9c3b
3 changed files with 86 additions and 1 deletions

View File

@@ -1,5 +1,6 @@
<script setup lang="ts">
import SearchComponent from "../components/SearchComponent.vue";
import ValidationComponent from "../components/ValidationComponent.vue";
import blockchain from "../utils/blockchain";
const confirmBuyClick = async ({ selectedDeposit, tokenValue }: any) => {
@@ -15,7 +16,8 @@ const confirmBuyClick = async ({ selectedDeposit, tokenValue }: any) => {
</script>
<template>
<SearchComponent @token-buy="confirmBuyClick" />
<!-- <SearchComponent @token-buy="confirmBuyClick" /> -->
<ValidationComponent />
</template>
<style scoped></style>