wujingjing
2024-07-19 16b491229cc9f37547a5d30bfecf74bcdd53d31b
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);