digimarket-nuxt-module
Version:
Nuxt ui kit module for nuxt 3. a modern and beautiful marketplace ui
12 lines • 444 B
text/typescript
export const useDarkmode = () => {
const darkmode = useState('darkmode', () => false)
watch(darkmode, (value : boolean) => {
if (value) {
document.getElementsByTagName("html")[0].setAttribute('data-mode', 'dark')
} else {
document.getElementsByTagName("html")[0].removeAttribute('data-mode')
}
localStorage.theme = value ? 'dark' : 'light'
})
return darkmode;
}