main
ts 11 lines 185 Bytes
Raw
1 import { useThemeStore } from "@/stores/theme"
2
3 export function useThemeSwitch() {
4 const themeStore = useThemeStore()
5
6 return {
7 toggle: () => {
8 themeStore.toggleTheme()
9 }
10 }
11 }