yumechi-no-kuni/packages/client/src/pages/messages.vue

28 lines
503 B
Vue
Raw Normal View History

<template>
2021-10-24 10:13:54 -05:00
<MkSpacer :content-max="800">
2021-12-24 22:38:53 -06:00
<XNotes :pagination="pagination"/>
2021-10-24 10:13:54 -05:00
</MkSpacer>
</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';
import * as symbols from '@/symbols';
2022-01-07 01:34:11 -06:00
import { i18n } from '@/i18n';
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,
params: () => ({
visibility: 'specified'
}),
};
2022-01-07 01:34:11 -06:00
defineExpose({
[symbols.PAGE_INFO]: {
title: i18n.locale.directNotes,
icon: 'fas fa-envelope',
bg: 'var(--bg)',
},
});
</script>