Display concerts with card views on "All concerts" page, adding image property for tours

This commit is contained in:
2024-09-28 21:18:25 +02:00
parent 8d0b141217
commit 0616409f14
49 changed files with 454 additions and 219 deletions

View File

@@ -1,15 +1,15 @@
<script setup lang="ts">
import sectionDivider from '@/components/sectionDivider.vue';
import { useShowStore } from '@/data/stores/showStore';
import { useConcertStore } from '@/data/stores/concertStore';
import cardWithTopImage from '@/components/cardWithTopImage.vue';
import { calcRating } from '@/scripts/showsScripts';
import { calcRating } from '@/scripts/concertScripts';
const showStore = useShowStore()
const concertStore = useConcertStore()
</script>
<template>
<v-container>
<div v-for="genre in showStore.genres">
<div v-for="genre in concertStore.genres">
<v-row>
<v-col>
<section-divider