UNPKG

@opentiny/tiny-toolkit-pro

Version:

TinyPro Vue:开箱即用、前后端分离的 Vue 后台管理模板

13 lines (11 loc) 264 B
import { computed } from 'vue'; import { useAppStore } from '@/store'; export default function useThemes() { const appStore = useAppStore(); const isDark = computed(() => { return appStore.theme === 'dark'; }); return { isDark, }; }