loading.js 277 B

12345678910111213141516
  1. import { defineStore } from "pinia";
  2. export const useLoadingStore = defineStore('loading', {
  3. state: () => ({
  4. // 是否显示loading
  5. visible: false,
  6. }),
  7. actions: {
  8. show() {
  9. this.visible = true
  10. },
  11. hide() {
  12. this.visible = false
  13. }
  14. }
  15. })