1
0
mirror of https://github.com/elk-zone/elk synced 2024-12-15 15:18:00 +09:00
elk/pages/@[account]/followers.vue

14 lines
388 B
Vue
Raw Normal View History

<script setup lang="ts">
const params = useRoute().params
2022-11-24 14:47:14 +09:00
const accountName = $computed(() => params.account as string)
2022-11-23 08:08:36 +09:00
2022-11-24 14:47:14 +09:00
const account = await fetchAccountByName(accountName)
2022-11-24 02:16:10 +09:00
const paginator = account ? masto.accounts.getFollowersIterable(account!.id!, {}) : null
</script>
<template>
2022-11-24 02:16:10 +09:00
<template v-if="account">
<AccountPaginator :paginator="paginator" />
</template>
</template>