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

14 wiersze
398 B
Vue

<script setup lang="ts">
const params = useRoute().params
const accountName = $(computedEager(() => params.account as string))
const account = await fetchAccountByName(accountName)
const paginator = account ? useMasto().accounts.getFollowingIterable(account.id, {}) : null
</script>
<template>
<template v-if="account">
<AccountPaginator :paginator="paginator" />
</template>
</template>