mirror of
https://github.com/rekryt/iplist.git
synced 2025-10-12 08:34:15 +03:00
7 lines
146 B
TypeScript
7 lines
146 B
TypeScript
export function useCookieTheme() {
|
|
const theme = useCookie<string>('theme');
|
|
if (!theme.value) theme.value = 'dark';
|
|
|
|
return theme;
|
|
}
|