rename from bid history to transaction history to be more coherent
This commit is contained in:
parent
c657a95a40
commit
0a4ce0a292
@ -218,7 +218,7 @@ const closeMenu = () => {
|
||||
<div class="pl-4 mt-2">
|
||||
<div class="bg-white rounded-md z-10">
|
||||
<div class="menu-button" @click="closeMenu()">
|
||||
<RouterLink to="/bid_history" class="redirect_button px-0">
|
||||
<RouterLink to="/transaction_history" class="redirect_button">
|
||||
Histórico de transações
|
||||
</RouterLink>
|
||||
</div>
|
||||
|
@ -1,7 +1,7 @@
|
||||
import { createRouter, createWebHistory } from "vue-router";
|
||||
import HomeView from "../views/HomeView.vue";
|
||||
import MockView from "../views/MockView.vue";
|
||||
import BidHistoryView from "../views/BidHistoryView.vue";
|
||||
import TransactionHistoryView from "../views/TransactionHistoryView.vue";
|
||||
import ManageBidsView from "../views/ManageBidsView.vue";
|
||||
import SellerView from "@/views/SellerView.vue";
|
||||
|
||||
@ -24,9 +24,9 @@ const router = createRouter({
|
||||
component: MockView,
|
||||
},
|
||||
{
|
||||
path: "/bid_history",
|
||||
name: "bid history",
|
||||
component: BidHistoryView,
|
||||
path: "/transaction_history",
|
||||
name: "transaction history",
|
||||
component: TransactionHistoryView,
|
||||
},
|
||||
{
|
||||
path: "/manage_bids",
|
||||
|
Loading…
x
Reference in New Issue
Block a user