vben
2020-12-07 88f4a3f02a0c0f35953c93427fe700d414b6ec50
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import type { MultiTabsSetting } from '/@/types/config';
 
import { computed, unref } from 'vue';
 
import { appStore } from '/@/store/modules/app';
 
const getMultipleTabSetting = computed(() => appStore.getProjectConfig.multiTabsSetting);
 
const getShowMultipleTab = computed(() => unref(getMultipleTabSetting).show);
 
const getShowQuick = computed(() => unref(getMultipleTabSetting).showQuick);
 
function setMultipleTabSetting(multiTabsSetting: Partial<MultiTabsSetting>) {
  appStore.commitProjectConfigState({ multiTabsSetting });
}
 
export function useMultipleTabSetting() {
  return {
    setMultipleTabSetting,
 
    getMultipleTabSetting,
    getShowMultipleTab,
    getShowQuick,
  };
}