Move software files one directory up, Readme

This commit is contained in:
2024-11-19 16:51:28 +01:00
parent baf763c4cb
commit 1dc5740f03
329 changed files with 255 additions and 31 deletions

View File

@@ -0,0 +1,45 @@
<script setup lang="ts">
import { useConcertStore } from '@/stores/concert.store';
import { useLocationStore } from '@/stores/location.store';
import bandSection from './bandsSection.vue';
import UpcomingConcertsSection from './upcomingConcertsSection.vue';
import TopLocationsSection from './topLocationsSection.vue';
import { usePreferencesStore } from '@/stores/preferences.store';
import welcomeDialog from './welcomeDialog.vue';
import { ref } from 'vue';
const concertStore = useConcertStore()
const locationStore = useLocationStore()
const preferencesStore = usePreferencesStore()
const showWelcomeDialog = ref(false)
concertStore.getUpcomingConcerts()
locationStore.getTopLocations()
// First startup
if (preferencesStore.firstStartup) {
showWelcomeDialog.value = true
}
</script>
<template>
<div class="pt-4">
<band-section v-if="!preferencesStore.firstStartup" />
</div>
<v-container v-if="!preferencesStore.firstStartup">
<v-row>
<v-spacer />
<v-col cols="10">
<upcoming-concerts-section />
<top-locations-section />
</v-col>
<v-spacer />
</v-row>
</v-container>
<welcome-dialog :model-value="showWelcomeDialog" />
</template>