soybean-admin/src/layouts/common/GlobalHeader/components/ThemeMode.vue
Soybean 8f6d6ce3cb refactor(styles): 代码格式
ISSUES CLOSED: \
2022-05-28 12:30:17 +08:00

14 lines
374 B
Vue

<template>
<hover-container class="w-40px" :inverted="theme.header.inverted" tooltip-content="主题模式">
<dark-mode-switch :dark="theme.darkMode" class="wh-full" @update:dark="theme.setDarkMode" />
</hover-container>
</template>
<script lang="ts" setup>
import { useThemeStore } from '@/store';
const theme = useThemeStore();
</script>
<style scoped></style>