1
0
mirror of https://github.com/hotomoe/hotomoe synced 2024-12-18 08:38:11 +09:00
hotomoe/packages/client/src/pages/mentions.vue

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