app.ts 242 B

123456789101112131415
  1. import { defineStore } from "pinia";
  2. export const useAppStore = defineStore({
  3. id: 'app',
  4. state() {
  5. return {
  6. loading: false
  7. }
  8. },
  9. actions: {
  10. setPageLoading(loading: boolean) {
  11. this.loading = loading
  12. }
  13. }
  14. })