front_foundation #5

Open
mohamed_maoulainine wants to merge 73 commits from front_foundation into main
Showing only changes of commit 9ae18e1e4b - Show all commits

View File

@ -0,0 +1,32 @@
<template>
mohamed_maoulainine marked this conversation as resolved
Review

Je pense que les clients voulaient plus un vrai calendrier genre ADE, mais c'est largement suffisant pour la V1

Je pense que les clients voulaient plus un vrai calendrier genre ADE, mais c'est largement suffisant pour la V1
<div id="agenda">
<h3>Rendez-vous</h3>
<table>
<tbody>
<tr v-for=" (p, index) in projectRDV" :key="p" >
<td>{{ p.projectName }} </td> <td>{{ p.date }}</td> <td>{{ p.lieu }}</td>
</tr>
</tbody>
</table>
</div>
</template>
<script lang="ts">
import { defineProps } from "vue";
interface rendezVous{
projectName: String,
date: String,
lieu: String,
}
const props = defineProps<{
projectRDV: rendezVous[]
}>();
</script>
<style>
</style>