46 lines
729 B
Vue
46 lines
729 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 '@/scripts/loading';
|
|
import XNotes from '@/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>
|