29 lines
589 B
Vue
29 lines
589 B
Vue
<script setup lang="ts">
|
|
const colorMode = useColorMode();
|
|
|
|
const isDark = computed({
|
|
get() {
|
|
return colorMode.value === "dark";
|
|
},
|
|
set() {
|
|
colorMode.preference = colorMode.value === "dark" ? "light" : "dark";
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<ClientOnly>
|
|
<UButton
|
|
:icon="isDark ? 'i-heroicons-moon-20-solid' : 'i-heroicons-sun-20-solid'"
|
|
color="gray"
|
|
variant="ghost"
|
|
aria-label="Theme"
|
|
class="w-8 h-8"
|
|
@click="isDark = !isDark"
|
|
/>
|
|
<template #fallback>
|
|
<div class="w-8 h-8" />
|
|
</template>
|
|
</ClientOnly>
|
|
</template>
|