elk/components/account/AccountSwitcher.vue
2022-11-23 11:48:01 +08:00

10 lines
225 B
Vue

<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>