瀏覽代碼

refactor: tabs

xiaoxian521 3 年之前
父節點
當前提交
aca6a667f3
共有 3 個文件被更改,包括 22 次插入0 次删除
  1. 1 0
      public/serverConfig.json
  2. 20 0
      src/store/modules/multiTabs.ts
  3. 1 0
      types/global.d.ts

+ 1 - 0
public/serverConfig.json

@@ -3,6 +3,7 @@
   "Title": "PureAdmin",
   "FixedHeader": true,
   "HiddenSideBar": false,
+  "MultiTabsCache": false,
   "KeepAlive": true,
   "Locale": "zh",
   "Layout": "vertical",

+ 20 - 0
src/store/modules/multiTabs.ts

@@ -0,0 +1,20 @@
+import { defineStore } from "pinia";
+import { store } from "/@/store";
+import { getConfig } from "/@/config";
+
+export const useMultiTabsStore = defineStore({
+  id: "pure-multiTabs",
+  state: () => ({
+    multiTabsCache: getConfig().MultiTabsCache
+  }),
+  getters: {
+    getMultiTabsCache() {
+      return this.multiTabsCache;
+    }
+  },
+  actions: {}
+});
+
+export function useMultiTabsStoreHook() {
+  return useMultiTabsStore(store);
+}

+ 1 - 0
types/global.d.ts

@@ -87,6 +87,7 @@ declare global {
     Title?: string;
     FixedHeader?: boolean;
     HiddenSideBar?: boolean;
+    MultiTabsCache?: boolean;
     KeepAlive?: boolean;
     Locale?: string;
     Layout?: string;