create menu

This commit is contained in:
enzoggqs
2022-12-14 19:30:29 -03:00
parent 07c4caa7b4
commit 1af0cf3df7
5 changed files with 109 additions and 4 deletions

View File

@@ -0,0 +1,8 @@
<script setup lang="ts">
</script>
<template>
<div>Histórico de ofertas</div>
</template>
<style scoped></style>

View File

@@ -62,6 +62,12 @@ const confirmBuyClick = async ({ selectedDeposit, tokenValue }: any) => {
// Valor = tokenValue
}
};
const disconnectUser = ({}: any) => {
console.log('entrou')
etherStore.setWalletAddress("");
flowStep.value == Step.Search;
};
</script>
<template>
@@ -77,6 +83,7 @@ const confirmBuyClick = async ({ selectedDeposit, tokenValue }: any) => {
/>
<ValidationComponent v-if="loadingLock" />
</div>
<div @disconnect-user="disconnectUser"></div>
</template>
<style scoped></style>

View File

@@ -0,0 +1,8 @@
<script setup lang="ts">
</script>
<template>
<div>Gerenciar Ofertas</div>
</template>
<style scoped></style>