From 2805fede4bb1307be2a69b9f973826e2cdcf285f Mon Sep 17 00:00:00 2001 From: Bartha Maxime <231026@umons.ac.be> Date: Fri, 29 Mar 2024 15:32:08 +0100 Subject: [PATCH] researcher profile page separations --- frontend/src/Apps/ResearcherProfile.vue | 109 ++++++++++++++++++++++++ frontend/src/rest/apps.js | 2 + 2 files changed, 111 insertions(+) create mode 100644 frontend/src/Apps/ResearcherProfile.vue diff --git a/frontend/src/Apps/ResearcherProfile.vue b/frontend/src/Apps/ResearcherProfile.vue new file mode 100644 index 0000000..da2a72e --- /dev/null +++ b/frontend/src/Apps/ResearcherProfile.vue @@ -0,0 +1,109 @@ + + + + + \ No newline at end of file diff --git a/frontend/src/rest/apps.js b/frontend/src/rest/apps.js index 99cbc10..491d20e 100644 --- a/frontend/src/rest/apps.js +++ b/frontend/src/rest/apps.js @@ -9,6 +9,7 @@ import Profil from "@/Apps/Profil.vue" import Courses from "@/Apps/ManageCourses.vue" import Users from "@/Apps/UsersList.vue" import Students from "@/Apps/StudentsList.vue" +import ResearcherProfile from "@/Apps/ResearcherProfile.vue"; const apps = { '/login': LoginPage, @@ -17,6 +18,7 @@ const apps = { '/manage-courses' : Courses, '/users-list' : Users, '/students-list' : Students, + '/researcher-profile' : ResearcherProfile, } const appsList = {