Files
zy-client-a/t_post_temp2/src/stores/loadingStore.ts
telangpu c73ff3b77a update
2026-04-29 12:37:13 +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;
},
},
});