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

14 lines
390 B
Vue
Raw Normal View History

<script setup lang="ts">
const params = useRoute().params
2022-11-30 07:08:10 +00:00
const handle = $(computedEager(() => params.account as string))
2022-11-22 23:08:36 +00:00
2022-11-30 07:08:10 +00:00
const account = await fetchAccountByHandle(handle)
const paginator = account ? useMasto().accounts.getFollowingIterable(account.id, {}) : null
</script>
<template>
2022-11-23 17:16:10 +00:00
<template v-if="account">
<AccountPaginator :paginator="paginator" />
</template>
</template>