import {defineStore} from "pinia"; export const useScheduleStore = defineStore('Schedule', { state: () => ({ fetchingDates: true, fetchingTable: true, fetchingLinks: true }), getters: { }, actions: { }, })