aboutsummaryrefslogtreecommitdiff
path: root/src/components/account_actions
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2021-04-07 22:42:34 +0300
committerHenry Jameson <me@hjkos.com>2021-04-25 14:05:25 +0300
commit8d46fd78c7ada7600afe7b74932a6f2380964592 (patch)
treea8d43b426e466f9dec8c69a0d9d983bf21999778 /src/components/account_actions
parent95e74319e11e673ce0a6a53546eae98a0b9c3eb5 (diff)
migrate to v-slot
Diffstat (limited to 'src/components/account_actions')
-rw-r--r--src/components/account_actions/account_actions.vue25
1 files changed, 10 insertions, 15 deletions
diff --git a/src/components/account_actions/account_actions.vue b/src/components/account_actions/account_actions.vue
index ab5d1d29..1e31151c 100644
--- a/src/components/account_actions/account_actions.vue
+++ b/src/components/account_actions/account_actions.vue
@@ -6,10 +6,7 @@
:bound-to="{ x: 'container' }"
remove-padding
>
- <div
- slot="content"
- class="account-tools-popover"
- >
+ <template v-slot:content>
<div class="dropdown-menu">
<template v-if="relationship.following">
<button
@@ -59,16 +56,15 @@
{{ $t('user_card.message') }}
</button>
</div>
- </div>
- <div
- slot="trigger"
- class="ellipsis-button"
- >
- <FAIcon
- class="icon"
- icon="ellipsis-v"
- />
- </div>
+ </template>
+ <template v-slot:trigger>
+ <button class="button-unstyled ellipsis-button">
+ <FAIcon
+ class="icon"
+ icon="ellipsis-v"
+ />
+ </button>
+ </template>
</Popover>
</div>
</template>
@@ -83,7 +79,6 @@
}
.ellipsis-button {
- cursor: pointer;
width: 2.5em;
margin: -0.5em 0;
padding: 0.5em 0;