create menu
This commit is contained in:
8
src/views/BidHistoryView.vue
Normal file
8
src/views/BidHistoryView.vue
Normal file
@@ -0,0 +1,8 @@
|
||||
<script setup lang="ts">
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div>Histórico de ofertas</div>
|
||||
</template>
|
||||
|
||||
<style scoped></style>
|
||||
@@ -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>
|
||||
|
||||
8
src/views/ManageBidsView.vue
Normal file
8
src/views/ManageBidsView.vue
Normal file
@@ -0,0 +1,8 @@
|
||||
<script setup lang="ts">
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div>Gerenciar Ofertas</div>
|
||||
</template>
|
||||
|
||||
<style scoped></style>
|
||||
Reference in New Issue
Block a user