DarkModeSwitch.vue 343 B

12345678910111213
  1. <script setup lang="ts">
  2. import { useToggle } from '@vueuse/core';
  3. import { isDark } from '../composables/dark';
  4. const toggle = useToggle(isDark);
  5. </script>
  6. <template>
  7. <button class="nav-btn" aria-label="Toggle Theme" @click="toggle">
  8. <ri-moon-line v-show="isDark" />
  9. <ri-sun-line v-show="!isDark" />
  10. </button>
  11. </template>