feat : adding an agenda, not included to the main page yet
This commit is contained in:
		@@ -0,0 +1,32 @@
 | 
				
			|||||||
 | 
					<template>
 | 
				
			||||||
 | 
					    <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>
 | 
				
			||||||
		Reference in New Issue
	
	Block a user