Agenda.vue 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <template>
  2. <LayoutContainer>
  3. <v-row>
  4. <v-col cols="4">
  5. <h3>L'agenda Opentalent</h3>
  6. </v-col>
  7. <v-col cols="4" />
  8. <v-col cols="4">
  9. <v-btn>Tous les évèvenements</v-btn>
  10. </v-col>
  11. </v-row>
  12. <v-row>
  13. <!-- slide card-->
  14. <v-col cols="4">
  15. <v-card>
  16. <v-img
  17. src="/images/logiciels/school/enseignement.jpg"
  18. class="enseignement"
  19. >
  20. <v-card-title class="title">
  21. Enseignement
  22. </v-card-title>
  23. </v-img>
  24. </v-card>
  25. </v-col>
  26. <v-col cols="4">
  27. <v-card>
  28. <v-img
  29. src="/images/logiciels/school/enseignement.jpg"
  30. class="enseignement"
  31. >
  32. <v-card-title class="title">
  33. Enseignement
  34. </v-card-title>
  35. </v-img>
  36. </v-card>
  37. </v-col>
  38. <v-col cols="4">
  39. <v-card>
  40. <v-img
  41. src="/images/logiciels/school/enseignement.jpg"
  42. class="enseignement"
  43. >
  44. <v-card-title class="title">
  45. Enseignement
  46. </v-card-title>
  47. </v-img>
  48. </v-card>
  49. </v-col>
  50. </v-row>
  51. </LayoutContainer>
  52. </template>
  53. <script setup></script>
  54. <style scoped></style>