1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-07-22 06:06:48 +01:00
elk/pages/mutes.vue

19 lines
337 B
Vue
Raw Normal View History

2022-11-26 12:58:10 +00:00
<script setup lang="ts">
definePageMeta({
middleware: 'auth',
})
useHeadFixed({
2022-11-26 12:58:10 +00:00
title: 'Muted users',
})
</script>
<template>
<MainContent back>
<template #title>
2022-11-29 21:50:13 +00:00
<span text-lg font-bold>{{ $t('account.muted_users') }}</span>
2022-11-26 12:58:10 +00:00
</template>
<TimelineMutes v-if="isMastoInitialised" />
2022-11-26 12:58:10 +00:00
</MainContent>
</template>