Add API_BASE_URL import to multiple Vue components for consistent API endpoint usage

This commit is contained in:
Torsten Schulz (local)
2025-10-20 08:43:10 +02:00
parent e7c2d54468
commit 2e3a1a9e99
10 changed files with 23 additions and 2 deletions

View File

@@ -192,7 +192,9 @@ import { ref, onMounted } from 'vue'
import { useAuthStore } from '../stores/authStore'
import { useModal } from '../composables/useModal'
import Modal from '../components/Modal.vue'
import { API_BASE_URL } from '@/config/api'
const API_URL = API_BASE_URL
const authStore = useAuthStore()
const futureHolidays = ref([])
const pastHolidays = ref([])