News.vue 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <template>
  2. <v-container>
  3. <div class="container">
  4. <v-row>
  5. <v-col cols="6">
  6. <h6>Découvrez nos dernières actualités</h6>
  7. <h2>Quoi de neuf ?</h2>
  8. </v-col>
  9. <v-col cols="6">
  10. <v-btn class="btn-news" color="primary" text>VOIR TOUTES LES ACTUALITÉS</v-btn>
  11. </v-col>
  12. </v-row>
  13. <v-row>
  14. <!-- caroussel des aactualités-->
  15. <v-col cols="12">
  16. <v-carousel cycle height="400" hide-delimiters>
  17. <v-carousel-item
  18. v-for="(item,i) in items"
  19. :key="i"
  20. :src="item.src"
  21. >
  22. <v-row>
  23. <v-col cols="6">
  24. <v-row>
  25. <p>Logiciel de Gestion et 
communication en ligne</p>
  26. </v-row>
  27. <v-row>
  28. <p>Logiciel de Gestion et 
communication en ligne</p>
  29. </v-row>
  30. </v-col>
  31. </v-row>
  32. </v-carousel-item>
  33. </v-carousel>
  34. </v-col>
  35. </v-row>
  36. </div>
  37. </v-container>
  38. </template>
  39. <style scoped>
  40. </style>