1
0
mirror of https://github.com/elk-zone/elk synced 2024-11-24 23:26:09 +09:00
elk/components/nav/NavUser.vue

20 lines
469 B
Vue
Raw Normal View History

2022-11-27 20:16:27 +09:00
<template>
2022-11-28 16:32:04 +09:00
<VDropdown v-if="currentUser">
2022-11-27 20:16:27 +09:00
<div style="-webkit-touch-callout: none;">
<AccountAvatar
ref="avatar"
:account="currentUser.account"
h="2em"
:draggable="false"
/>
</div>
<template #popper>
<UserSwitcher ref="switcher" />
</template>
</VDropdown>
<button v-else btn-solid text-sm px-2 py-1 text-center @click="openSigninDialog()">
2022-11-29 16:18:28 +09:00
{{ $t('action.sign_in') }}
2022-11-27 20:16:27 +09:00
</button>
</template>