mirror of
https://github.com/xiangshu233/vue3-vant4-mobile.git
synced 2025-04-05 06:22:45 +08:00
25 lines
636 B
TypeScript
25 lines
636 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,
|
|
}
|
|
}
|