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