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

25 lines
445 B
Vue
Raw Normal View History

<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>
</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';
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,
};
2022-01-07 09:34:11 +02:00
defineExpose({
[symbols.PAGE_INFO]: {
title: i18n.locale.mentions,
icon: 'fas fa-at',
bg: 'var(--bg)',
},
});
</script>