This commit is contained in:
李志鹏
2026-04-08 11:06:31 +08:00
parent 6f0780ac2e
commit 41e530d33d
5 changed files with 55 additions and 2 deletions

View File

@@ -163,6 +163,20 @@ const routes: Array<RouteRecordRaw> = [
name: "otherUsers",
meta: { enter: "all" },
component: () => import("@/component/Account/otherUsers.vue"),
},
{
path: "seller",
name: "seller",
meta: { enter: "all" },
component: () => import("@/views/SellerDashboard/index.vue"),
children:[
{
path: "brandProfile",
name: "brandProfile",
meta: { enter: "all" },
component: () => import("@/views/SellerDashboard/BrandProfile/index.vue"),
},
],
},
],
},