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