some minor changes on the main page

This commit is contained in:
Mohamed Maoulainine Maoulainine
2025-02-08 22:40:35 +01:00
parent edd4993f3f
commit f4d73654d1
2 changed files with 47 additions and 4 deletions

View File

@ -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"
/>
</div>
</template>
@ -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'],
},
],
};