wujingjing
2025-01-03 d43a9b7b743bc27b2a8740e97f55a1f352ac00c0
src/stores/keepAliveNames.ts
@@ -18,7 +18,9 @@
         this.keepAliveNames = data;
      },
      async addCachedView(view: any) {
         if (view.meta.isKeepAlive) this.cachedViews?.push(view.name);
         if (view.meta.isKeepAlive && !this.cachedViews?.includes(view.name)) {
            this.cachedViews?.push(view.name);
         }
      },
      async delCachedView(view: any) {
         const index = this.cachedViews.indexOf(view.name);