sharkey/packages/client/src/pages/messages.vue

28 lines
499 B
Vue
Raw Normal View History

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