1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-11-07 09:29:59 +00:00
elk/components/modal/ModalContainer.vue

13 lines
316 B
Vue
Raw Normal View History

2022-11-23 03:48:01 +00:00
<script setup lang="ts">
import { isAccountSwitcherOpen, isSigninDialogOpen } from '~/composables/dialog'
</script>
<template>
2022-11-23 04:20:59 +00:00
<ModalDrawer v-model="isAccountSwitcherOpen">
<AccountSwitcher />
2022-11-23 03:48:01 +00:00
</ModalDrawer>
<ModalDialog v-model="isSigninDialogOpen">
<AccountSignIn m6 />
</ModalDialog>
</template>