Global loading done.

This commit is contained in:
chiayin
2023-02-15 16:26:07 +08:00
parent 79b503bd8a
commit 819199864d
9 changed files with 110 additions and 19 deletions

7
src/stores/loading.js Normal file
View File

@@ -0,0 +1,7 @@
import { defineStore } from "pinia";
export default defineStore('loadingStore', {
state: () => ({
isLoading: true,
})
});