mirror of https://github.com/elk-zone/elk.git
14 lines
388 B
Vue
14 lines
388 B
Vue
<script setup lang="ts">
|
|
const params = useRoute().params
|
|
const accountName = $computed(() => params.account as string)
|
|
|
|
const account = await fetchAccountByName(accountName)
|
|
const paginator = account ? masto.accounts.getFollowersIterable(account!.id!, {}) : null
|
|
</script>
|
|
|
|
<template>
|
|
<template v-if="account">
|
|
<AccountPaginator :paginator="paginator" />
|
|
</template>
|
|
</template>
|