fix
This commit is contained in:
@@ -192,7 +192,32 @@ const routes: Array<RouteRecordRaw> = [
|
||||
path: "myListings",
|
||||
name: "myListings",
|
||||
meta: { enter: "all" },
|
||||
component: () => import("@/views/SellerDashboard/BrandProfile/index.vue"),
|
||||
children:[
|
||||
{
|
||||
path: "",
|
||||
name: "myListingsChild",
|
||||
meta: { enter: "all" },
|
||||
redirect: "/home/seller/myListings/index",
|
||||
},
|
||||
{
|
||||
path: "index",
|
||||
name: "myListingsIndex",
|
||||
meta: { enter: "all" },
|
||||
component: () => import("@/views/SellerDashboard/MyListings/index.vue"),
|
||||
},
|
||||
{
|
||||
path: "select",
|
||||
name: "myListingsSelect",
|
||||
meta: { enter: "all" },
|
||||
component: () => import("@/views/SellerDashboard/MyListingCreateSelect/index.vue"),
|
||||
},
|
||||
{
|
||||
path: "select/:id",
|
||||
name: "myListingsSelectItem",
|
||||
meta: { enter: "all" },
|
||||
component: () => import("@/views/SellerDashboard/MyListingCreateSelectItem/index.vue"),
|
||||
},
|
||||
]
|
||||
},
|
||||
{
|
||||
path: "myOrders",
|
||||
|
||||
Reference in New Issue
Block a user