2022-06-20 03:38:49 -05:00
|
|
|
<template><MkStickyContainer>
|
|
|
|
<template #header><MkPageHeader :actions="headerActions" :tabs="headerTabs"/></template>
|
|
|
|
<MkSpacer :content-max="800">
|
2021-12-24 22:38:53 -06:00
|
|
|
<XNotes :pagination="pagination"/>
|
2022-06-20 03:38:49 -05:00
|
|
|
</MkSpacer></MkStickyContainer>
|
2020-01-29 13:37:25 -06:00
|
|
|
</template>
|
|
|
|
|
2022-01-07 01:34:11 -06:00
|
|
|
<script lang="ts" setup>
|
2021-11-11 11:02:25 -06:00
|
|
|
import XNotes from '@/components/notes.vue';
|
2022-01-07 01:34:11 -06:00
|
|
|
import { i18n } from '@/i18n';
|
2022-06-20 03:38:49 -05:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
2020-01-29 13:37:25 -06:00
|
|
|
|
2022-01-07 01:34:11 -06:00
|
|
|
const pagination = {
|
2022-01-12 11:26:10 -06:00
|
|
|
endpoint: 'notes/mentions' as const,
|
2022-01-07 01:34:11 -06:00
|
|
|
limit: 10,
|
2022-01-27 22:39:54 -06:00
|
|
|
params: {
|
2022-06-20 03:38:49 -05:00
|
|
|
visibility: 'specified',
|
2022-01-27 22:39:54 -06:00
|
|
|
},
|
2022-01-07 01:34:11 -06:00
|
|
|
};
|
2020-01-29 13:37:25 -06:00
|
|
|
|
2022-06-20 03:38:49 -05:00
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.directNotes,
|
|
|
|
icon: 'fas fa-envelope',
|
|
|
|
bg: 'var(--bg)',
|
2020-01-29 13:37:25 -06:00
|
|
|
});
|
|
|
|
</script>
|