Merge branch 'v-slot-upgrade' into 'develop'

Change old slot syntax (removed in vue3) to new one

See merge request pleroma/pleroma-fe!1379
This commit is contained in:
HJ 2021-05-31 11:15:44 +00:00
commit 0ca0e642a4
20 changed files with 235 additions and 279 deletions

View file

@ -53,17 +53,17 @@
>
{{ user.name }}
</div>
<a
<button
v-if="isOtherUser && !user.is_local"
:href="user.statusnet_profile_url"
target="_blank"
class="external-link-button"
class="button-unstyled external-link-button"
>
<FAIcon
class="icon"
icon="external-link-alt"
/>
</a>
</button>
<AccountActions
v-if="isOtherUser && loggedIn"
:user="user"