diff --git a/src/router/index.ts b/src/router/index.ts index a32ec66e..2cad2ad3 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -203,19 +203,19 @@ const routes: Array = [ path: "index", name: "myListingsIndex", meta: { enter: "all" }, - component: () => import("@/views/SellerDashboard/MyListings/index.vue"), + component: () => import("@/views/SellerDashboard/MyListings/main/index.vue"), }, { path: "select", name: "myListingsSelect", meta: { enter: "all" }, - component: () => import("@/views/SellerDashboard/MyListingCreateSelect/index.vue"), + component: () => import("@/views/SellerDashboard/MyListings/createSelect/index.vue"), }, { path: "select/:id", name: "myListingsSelectItem", meta: { enter: "all" }, - component: () => import("@/views/SellerDashboard/MyListingCreateSelectItem/index.vue"), + component: () => import("@/views/SellerDashboard/MyListings/createSelectItem/index.vue"), }, ] }, diff --git a/src/views/SellerDashboard/MyListingCreateSelect/index.vue b/src/views/SellerDashboard/MyListings/createSelect/index.vue similarity index 94% rename from src/views/SellerDashboard/MyListingCreateSelect/index.vue rename to src/views/SellerDashboard/MyListings/createSelect/index.vue index 4fdccc62..8b5b1502 100644 --- a/src/views/SellerDashboard/MyListingCreateSelect/index.vue +++ b/src/views/SellerDashboard/MyListings/createSelect/index.vue @@ -1,6 +1,6 @@