jormungandr-bite/packages/client/src/pages/mentions.vue

25 lines
445 B
Vue
Raw Normal View History

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