monkeeShark/packages/client/src/pages/mentions.vue

28 lines
656 B
Vue
Raw Normal View History

<template><MkStickyContainer>
<template #header><MkPageHeader :actions="headerActions" :tabs="headerTabs"/></template>
<MkSpacer :content-max="800">
2021-12-25 04:38:53 +00:00
<XNotes :pagination="pagination"/>
</MkSpacer></MkStickyContainer>
</template>
2022-01-07 07:34:11 +00:00
<script lang="ts" setup>
2021-11-11 17:02:25 +00:00
import XNotes from '@/components/notes.vue';
2022-01-07 07:34:11 +00:00
import { i18n } from '@/i18n';
import { definePageMetadata } from '@/scripts/page-metadata';
2022-01-07 07:34:11 +00:00
const pagination = {
2022-01-12 17:26:10 +00:00
endpoint: 'notes/mentions' as const,
2022-01-07 07:34:11 +00:00
limit: 10,
};
const headerActions = $computed(() => []);
const headerTabs = $computed(() => []);
definePageMetadata({
title: i18n.ts.mentions,
icon: 'fas fa-at',
bg: 'var(--bg)',
});
</script>