egirlskey/src/client/pages/messages.vue

46 lines
741 B
Vue

<template>
<div>
<XNotes :pagination="pagination" @before="before()" @after="after()"/>
</div>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
import { faEnvelope } from '@fortawesome/free-solid-svg-icons';
import Progress from '@client/scripts/loading';
import XNotes from '@client/components/notes.vue';
export default defineComponent({
components: {
XNotes
},
data() {
return {
INFO: {
title: this.$ts.directNotes,
icon: faEnvelope
},
pagination: {
endpoint: 'notes/mentions',
limit: 10,
params: () => ({
visibility: 'specified'
})
},
faEnvelope
};
},
methods: {
before() {
Progress.start();
},
after() {
Progress.done();
}
}
});
</script>