elk/pages/@[account]/index/followers.vue

14 lines
391 B
Vue
Raw Normal View History

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