fix: #327 add needed await keyword
This commit is contained in:
@@ -3,5 +3,10 @@ import { defineStore } from "pinia";
|
||||
export default defineStore('loadingStore', {
|
||||
state: () => ({
|
||||
isLoading: true,
|
||||
})
|
||||
}),
|
||||
actions: {
|
||||
setIsLoading(isLoadingBoolean) {
|
||||
this.isLoading = isLoadingBoolean;
|
||||
}
|
||||
},
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user