mirror of
https://github.com/xiangshu233/vue3-vant4-mobile.git
synced 2025-04-06 03:57:47 +08:00
25 lines
645 B
TypeScript
25 lines
645 B
TypeScript
import { computed } from 'vue';
|
|
import { useDesignSettingStore } from '@/store/modules/designSetting';
|
|
|
|
export function useDesignSetting() {
|
|
const designStore = useDesignSettingStore();
|
|
|
|
const getDarkMode = computed(() => designStore.darkMode);
|
|
|
|
const getAppTheme = computed(() => designStore.appTheme);
|
|
|
|
const getAppThemeList = computed(() => designStore.appThemeList);
|
|
|
|
const getIsPageAnimate = computed(() => designStore.isPageAnimate);
|
|
|
|
const getPageAnimateType = computed(() => designStore.pageAnimateType);
|
|
|
|
return {
|
|
getDarkMode,
|
|
getAppTheme,
|
|
getAppThemeList,
|
|
getIsPageAnimate,
|
|
getPageAnimateType,
|
|
};
|
|
}
|