elk/components/account/AccountSwitcher.vue

10 lines
225 B
Vue
Raw Normal View History

2022-11-23 03:48:01 +00:00
<script setup lang="ts">
const accounts = useAccounts()
</script>
<template>
<div flex flex-col gap-4 p4>
<AccountInfo :account="currentUser?.account" :link="false" @click="openAccountSwitcher" />
</div>
</template>