mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-05 19:41:59 +08:00
18 lines
336 B
Vue
18 lines
336 B
Vue
<script setup lang="ts">
|
|
import { useAppStore } from '@/store'
|
|
|
|
const appStore = useAppStore()
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
class="cursor-pointer"
|
|
@click="appStore.toggleDarkMode()"
|
|
>
|
|
<i-icon-park-outline-moon v-if="appStore.darkMode" />
|
|
<i-icon-park-outline-sun v-else />
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped></style>
|