diff --git a/front/MyINPulse-front/src/App.vue b/front/MyINPulse-front/src/App.vue index 71701b5..f2db102 100644 --- a/front/MyINPulse-front/src/App.vue +++ b/front/MyINPulse-front/src/App.vue @@ -13,6 +13,7 @@ import ProjectComp from './components/Project-comp.vue'; v-for="(project, index) in projects" :key="index" :projectName="project.name" + :listName="project.members" /> @@ -33,12 +34,12 @@ export default { { name: 'Projet Alpha', //link: './project-alpha.html', - //members: ['Alice', 'Bob', 'Charlie'], + members: ['Alice', 'Bob', 'Charlie'], }, { name: 'Projet Beta', //link: './project-beta.html', - //members: ['David', 'Eve', 'Frank'], + members: ['David', 'Eve', 'Frank'], }, ], }; diff --git a/front/MyINPulse-front/src/components/Project-comp.vue b/front/MyINPulse-front/src/components/Project-comp.vue index 3e060bb..258a6d5 100644 --- a/front/MyINPulse-front/src/components/Project-comp.vue +++ b/front/MyINPulse-front/src/components/Project-comp.vue @@ -2,8 +2,16 @@