From d2c4d62cf5611083a829165bbe24cde09453c443 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=89=E5=92=B2=E6=99=BA=E5=AD=90?= Date: Tue, 29 Nov 2022 01:24:39 +0800 Subject: [PATCH] feat: add hover card for user list --- components/account/AccountCard.vue | 7 ++++++- components/account/AccountHoverWrapper.vue | 4 +++- components/account/AccountInfo.vue | 5 ++++- components/account/AccountPaginator.vue | 1 + 4 files changed, 14 insertions(+), 3 deletions(-) diff --git a/components/account/AccountCard.vue b/components/account/AccountCard.vue index d711c03e..e870e984 100644 --- a/components/account/AccountCard.vue +++ b/components/account/AccountCard.vue @@ -3,6 +3,7 @@ import type { Account } from 'masto' const { account } = defineProps<{ account: Account + hoverCard?: boolean }>() cacheAccount(account) @@ -10,7 +11,11 @@ cacheAccount(account)