2020-01-29 21:37:25 +02:00
|
|
|
<template>
|
2021-10-24 18:13:54 +03:00
|
|
|
<MkSpacer :content-max="800">
|
2021-12-25 06:38:53 +02:00
|
|
|
<XNotes :pagination="pagination"/>
|
2021-10-24 18:13:54 +03:00
|
|
|
</MkSpacer>
|
2020-01-29 21:37:25 +02:00
|
|
|
</template>
|
|
|
|
|
2022-01-07 09:34:11 +02:00
|
|
|
<script lang="ts" setup>
|
2021-11-11 19:02:25 +02:00
|
|
|
import XNotes from '@/components/notes.vue';
|
|
|
|
import * as symbols from '@/symbols';
|
2022-01-07 09:34:11 +02:00
|
|
|
import { i18n } from '@/i18n';
|
2020-01-29 21:37:25 +02:00
|
|
|
|
2022-01-07 09:34:11 +02:00
|
|
|
const pagination = {
|
2022-01-12 19:26:10 +02:00
|
|
|
endpoint: 'notes/mentions' as const,
|
2022-01-07 09:34:11 +02:00
|
|
|
limit: 10,
|
|
|
|
};
|
2020-01-29 21:37:25 +02:00
|
|
|
|
2022-01-07 09:34:11 +02:00
|
|
|
defineExpose({
|
|
|
|
[symbols.PAGE_INFO]: {
|
2022-01-28 04:39:49 +02:00
|
|
|
title: i18n.ts.mentions,
|
2022-01-07 09:34:11 +02:00
|
|
|
icon: 'fas fa-at',
|
|
|
|
bg: 'var(--bg)',
|
2020-01-29 21:37:25 +02:00
|
|
|
},
|
|
|
|
});
|
|
|
|
</script>
|