feat: Performance router done.

This commit is contained in:
chiayin
2024-01-25 15:35:23 +08:00
parent fefb3f325d
commit 8ebfb151c7
4 changed files with 42 additions and 9 deletions

View File

@@ -6,6 +6,7 @@ import Files from '@/views/Files/index.vue';
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 MemberArea from '@/views/MemberArea/index.vue';
import NotFound404 from '@/views/NotFound404.vue';
@@ -78,6 +79,11 @@ const routes = [
component: Conformance,
props: true,
},
{
path: "/discover/performance/:type/:fileId",
name: "Performance",
component: Performance,
}
]
},
]