Files
AstralRinth/theseus_gui/src/store/loading.js
Geometrically 9be0d16f75 Loading bars (#113)
* Loading bars

* remove print

* remove print

* remove class

* Fix overlay
2023-05-10 11:19:01 -07:00

14 lines
259 B
JavaScript

import { defineStore } from 'pinia'
export const useLoading = defineStore('loadingStore', {
state: () => ({ loading: false }),
actions: {
startLoading() {
this.loading = true
},
stopLoading() {
this.loading = false
},
},
})