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