feat: Compare Dashboard API done.

This commit is contained in:
chiayin
2024-02-20 12:44:30 +08:00
parent 01b8a95485
commit 795480ee89
6 changed files with 95 additions and 39 deletions

View File

@@ -88,9 +88,15 @@ const routes = [
]
},
{
path: "/compare/dashboard",
name: "CompareDashboard",
component: CompareDashboard,
path: "/compare",
name: "Compare",
children: [
{
path: "/compare/dashboard/:primaryType/:primaryId/:secondaryType/:secondaryId",
name: "CompareDashboard",
component: CompareDashboard,
}
]
}
]
},
@@ -99,11 +105,6 @@ const routes = [
name: "NotFound404",
component: NotFound404,
},
// {
// path: "/compare/dashboard",
// name: "CompareDashboard",
// component: CompareDashboard,
// }
];
const base_url = import.meta.env.BASE_URL;