mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-02 23:19:57 +00:00
20 lines
469 B
Vue
20 lines
469 B
Vue
<template>
|
|
<VDropdown v-if="currentUser">
|
|
<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()">
|
|
{{ $t('action.sign_in') }}
|
|
</button>
|
|
</template>
|