Bugfix Carousel on HomePage

This commit is contained in:
2024-11-01 03:08:52 +01:00
parent 82cd2d0e98
commit b6205f374b

View File

@@ -6,13 +6,13 @@ import outlinedButton from '@/components/basics/outlinedButton.vue';
const router = useRouter()
const bandStore = useBandStore()
const window = ref(0)
bandStore.getBands()
</script>
<template>
<template>
<v-carousel
v-if="bandStore.bands.length > 0"
hide-delimiters
hide-delimiter-background
height="700"
@@ -35,6 +35,7 @@ bandStore.getBands()
</template>
<v-carousel-item
v-for="band in bandStore.bands"
:src="'http://localhost:3000/static/' + band.imageMembers"
cover