elk/components/nav/NavUser.vue

20 lines
538 B
Vue
Raw Normal View History

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