feat: Compare bar layout done.

This commit is contained in:
chiayin
2024-02-15 13:00:01 +08:00
parent f3dd456b3a
commit ac8a3b0b27
4 changed files with 2271 additions and 6 deletions

View File

@@ -7,6 +7,7 @@ import Upload from '@/views/Upload/index.vue';
import Map from '@/views/Discover/Map/index.vue';
import Conformance from '@/views/Discover/Conformance/index.vue';
import Performance from '@/views/Discover/Performance/index.vue';
import CompareDashboard from '@/views/Compare/Dashboard/index.vue';
import MemberArea from '@/views/MemberArea/index.vue';
import NotFound404 from '@/views/NotFound404.vue';
@@ -93,11 +94,11 @@ const routes = [
name: "NotFound404",
component: NotFound404,
},
// {
// path: "/discover/performance",
// name: "Performance",
// component: Performance,
// }
{
path: "/compare/dashboard",
name: "CompareDashboard",
component: CompareDashboard,
}
];
const base_url = import.meta.env.BASE_URL;