Files
zy-client-a/t_global_Fine_temp2/src/stores/loadingStore.ts
telangpu b8e0814009 update
2026-05-10 22:11:57 +08:00

14 lines
258 B
TypeScript

// stores/loadingStore.ts
import { defineStore } from "pinia";
export const useLoadingStore = defineStore("loading", {
state: () => ({
isLoading: false,
}),
actions: {
setLoading(value: boolean) {
this.isLoading = value;
},
},
});