mirror of https://github.com/elk-zone/elk.git
21 lines
367 B
Vue
21 lines
367 B
Vue
<script setup lang="ts">
|
|
definePageMeta({
|
|
middleware: 'auth',
|
|
})
|
|
|
|
const paginator = useMasto().blocks.getIterator()
|
|
|
|
useHead({
|
|
title: 'Blocked users',
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<MainContent back>
|
|
<template #title>
|
|
<span text-lg font-bold>Blocked users</span>
|
|
</template>
|
|
<AccountPaginator :paginator="paginator" />
|
|
</MainContent>
|
|
</template>
|