mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-02 23:19:57 +00:00
10 lines
225 B
Vue
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>
|