blob: e607b865469b87ff5c1b32eb7ddd517b15891bb0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
<template>
<div>
<portal to="icon"><fa :icon="faEnvelope"/></portal>
<portal to="title">{{ $t('directNotes') }}</portal>
<x-notes :pagination="pagination" @before="before()" @after="after()"/>
</div>
</template>
<script lang="ts">
import Vue from 'vue';
import { faEnvelope } from '@fortawesome/free-solid-svg-icons';
import Progress from '../scripts/loading';
import XNotes from '../components/notes.vue';
export default Vue.extend({
metaInfo() {
return {
title: this.$t('directNotes') as string
};
},
components: {
XNotes
},
data() {
return {
pagination: {
endpoint: 'notes/mentions',
limit: 10,
params: () => ({
visibility: 'specified'
})
},
faEnvelope
};
},
methods: {
before() {
Progress.start();
},
after() {
Progress.done();
}
}
});
</script>
|