mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-10-01 07:36:41 +08:00
40 lines
752 B
Vue
40 lines
752 B
Vue
<template>
|
|
<div class="flex-center text-18px hover:text-primary cursor-pointer" @click="handleSwitch">
|
|
<icon-mdi-moon-waning-crescent v-if="darkMode" />
|
|
<icon-mdi-white-balance-sunny v-else />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { computed } from 'vue';
|
|
|
|
interface Props {
|
|
/** 暗黑模式 */
|
|
dark?: boolean;
|
|
}
|
|
|
|
interface Emits {
|
|
(e: 'update:dark', darkMode: boolean): void;
|
|
}
|
|
|
|
const props = withDefaults(defineProps<Props>(), {
|
|
dark: false
|
|
});
|
|
|
|
const emit = defineEmits<Emits>();
|
|
|
|
const darkMode = computed({
|
|
get() {
|
|
return props.dark;
|
|
},
|
|
set(newValue: boolean) {
|
|
emit('update:dark', newValue);
|
|
}
|
|
});
|
|
|
|
function handleSwitch() {
|
|
darkMode.value = !darkMode.value;
|
|
}
|
|
</script>
|
|
<style scoped></style>
|