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

@@ -6,17 +6,17 @@ import navigationAppendItems from './components/navigation/navigationAppendItems
import navigationPrependItems from './components/navigation/navigationPrependItems.vue';
import { usePreferencesStore } from './data/stores/preferencesStore';
import { useFeedbackStore } from './data/stores/feedbackStore';
import { useShowStore } from './data/stores/showStore';
import { useConcertStore } from './data/stores/concertStore';
const preferencesStore = usePreferencesStore()
const showStore = useShowStore()
const concertStore = useConcertStore()
const feedbackStore = useFeedbackStore()
const theme = useTheme()
theme.global.name.value = preferencesStore.theme
showStore.fetchAllTours()
concertStore.fetchAllTours()
// Global watcher
watch(() => preferencesStore.language, () => {
@@ -64,7 +64,7 @@ watch(() => preferencesStore.language, () => {
</v-snackbar>
<!-- Here changes the router the content -->
<v-container max-width="1200" class="pt-0 pb-5">
<v-container max-width="1400" class="pt-0 pb-5">
<v-sheet color="sheet">
<router-view></router-view>
</v-sheet>