mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-14 11:13:08 +02:00
34 lines
592 B
Vue
34 lines
592 B
Vue
<template>
|
|
<MkSpacer :content-max="800">
|
|
<XNotes :pagination="pagination"/>
|
|
</MkSpacer>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue';
|
|
import XNotes from '@/components/notes.vue';
|
|
import * as symbols from '@/symbols';
|
|
|
|
export default defineComponent({
|
|
components: {
|
|
XNotes
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
[symbols.PAGE_INFO]: {
|
|
title: this.$ts.directNotes,
|
|
icon: 'fas fa-envelope',
|
|
bg: 'var(--bg)',
|
|
},
|
|
pagination: {
|
|
endpoint: 'notes/mentions',
|
|
limit: 10,
|
|
params: () => ({
|
|
visibility: 'specified'
|
|
})
|
|
},
|
|
};
|
|
},
|
|
});
|
|
</script>
|