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