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

16 lines
275 B
TypeScript

import { defineStore } from "pinia";
export const useLoadingStore = defineStore("loading", {
state: () => ({
isLoading: false,
}),
actions: {
showLoading() {
this.isLoading = true;
},
hideLoading() {
this.isLoading = false;
},
},
});