mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-09-21 11:06:38 +08:00
14 lines
374 B
Vue
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>
|