mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-05 00:19:59 +00:00
12 lines
285 B
TypeScript
12 lines
285 B
TypeScript
export const isAccountSwitcherOpen = ref(false)
|
|
export const isSigninDialogOpen = ref(false)
|
|
|
|
export function openAccountSwitcher() {
|
|
isAccountSwitcherOpen.value = true
|
|
}
|
|
|
|
export function openSigninDialog() {
|
|
isSigninDialogOpen.value = true
|
|
isAccountSwitcherOpen.value = false
|
|
}
|