|
@@ -9,7 +9,6 @@
|
|
|
:hide-delimiter-background="true"
|
|
:hide-delimiter-background="true"
|
|
|
:show-delimiters="false"
|
|
:show-delimiters="false"
|
|
|
:touch="true"
|
|
:touch="true"
|
|
|
- cycle
|
|
|
|
|
>
|
|
>
|
|
|
<v-carousel-item v-for="(item, index) in carouselItems" :key="index">
|
|
<v-carousel-item v-for="(item, index) in carouselItems" :key="index">
|
|
|
<v-row>
|
|
<v-row>
|
|
@@ -38,15 +37,15 @@
|
|
|
<v-card class="card" elevation="5">
|
|
<v-card class="card" elevation="5">
|
|
|
<v-img
|
|
<v-img
|
|
|
class="profile-image"
|
|
class="profile-image"
|
|
|
- src="/images/carousel/school/avatar.png"
|
|
|
|
|
|
|
+ :src="item.avatar"
|
|
|
alt="Profile Image"
|
|
alt="Profile Image"
|
|
|
contain
|
|
contain
|
|
|
rounded
|
|
rounded
|
|
|
></v-img>
|
|
></v-img>
|
|
|
<v-card-text>
|
|
<v-card-text>
|
|
|
- <v-card-title class="name">Cindy Blanchard</v-card-title>
|
|
|
|
|
- <p class="school">Conservatoire d'Anemasse</p>
|
|
|
|
|
- <p class="status">Eleve</p>
|
|
|
|
|
|
|
+ <v-card-title class="name">{{ item.name }}</v-card-title>
|
|
|
|
|
+ <p class="school">{{ item.school }}</p>
|
|
|
|
|
+ <p class="status">{{ item.status }}</p>
|
|
|
</v-card-text>
|
|
</v-card-text>
|
|
|
</v-card>
|
|
</v-card>
|
|
|
|
|
|
|
@@ -78,6 +77,7 @@ const changeSlide = (index) => {
|
|
|
activeIndex.value = index;
|
|
activeIndex.value = index;
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
|
|
+
|
|
|
const carouselItems = ref([
|
|
const carouselItems = ref([
|
|
|
{
|
|
{
|
|
|
logo: "/images/carousel/school/school.png",
|
|
logo: "/images/carousel/school/school.png",
|
|
@@ -87,6 +87,10 @@ const carouselItems = ref([
|
|
|
image: "/images/carousel/school/Fille_School.png",
|
|
image: "/images/carousel/school/Fille_School.png",
|
|
|
color: "rgba(32, 147, 190, 0.4)",
|
|
color: "rgba(32, 147, 190, 0.4)",
|
|
|
link: "/logiciels/school",
|
|
link: "/logiciels/school",
|
|
|
|
|
+ name: "Cindy Blanchard",
|
|
|
|
|
+ school: "Conservatoire d'Anemasse",
|
|
|
|
|
+ status: "Eleve",
|
|
|
|
|
+ avatar: "/images/carousel/school/avatar.png",
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
logo: "/images/carousel/artist/artist.png",
|
|
logo: "/images/carousel/artist/artist.png",
|
|
@@ -96,6 +100,10 @@ const carouselItems = ref([
|
|
|
image: "/images/carousel/artist/musician.png",
|
|
image: "/images/carousel/artist/musician.png",
|
|
|
color: "rgba(250, 194, 10, 0.4)",
|
|
color: "rgba(250, 194, 10, 0.4)",
|
|
|
link: "/logiciels/artist",
|
|
link: "/logiciels/artist",
|
|
|
|
|
+ name: "Thierry Dupont ",
|
|
|
|
|
+ school: "Orchestre d’harmonie de Cluse",
|
|
|
|
|
+ status: "Admin",
|
|
|
|
|
+ avatar: "/images/carousel/artist/avatar.png",
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
logo: "/images/carousel/manager/manager.png",
|
|
logo: "/images/carousel/manager/manager.png",
|
|
@@ -105,6 +113,10 @@ const carouselItems = ref([
|
|
|
image: "/images/carousel/manager/fédération.png",
|
|
image: "/images/carousel/manager/fédération.png",
|
|
|
color: "rgba(216, 5, 11, 0.4)",
|
|
color: "rgba(216, 5, 11, 0.4)",
|
|
|
link: "/logiciels/manager",
|
|
link: "/logiciels/manager",
|
|
|
|
|
+ name: "Marie Voisin",
|
|
|
|
|
+ school: "Confédération Musicale de France",
|
|
|
|
|
+ status: "ADMIN",
|
|
|
|
|
+ avatar: "/images/carousel/manager/avatar.png",
|
|
|
},
|
|
},
|
|
|
]);
|
|
]);
|
|
|
</script>
|
|
</script>
|