10 lines
292 B
TypeScript
10 lines
292 B
TypeScript
const CARDS_COOKIE_NAME = 'cards_type';
|
|
const CARDS_DEFAULT_VALUE = 'heron';
|
|
|
|
export function getCardsType(): CookieRef<string | null | undefined> {
|
|
const cookie = useCookie(CARDS_COOKIE_NAME)
|
|
if (!cookie.value) {
|
|
cookie.value = CARDS_DEFAULT_VALUE;
|
|
}
|
|
return cookie;
|
|
} |