166bc19131
This reverts commit 9c30b23358
.
47 lines
743 B
Vue
47 lines
743 B
Vue
<template>
|
|
<div>
|
|
<portal to="icon"><fa :icon="faAt"/></portal>
|
|
<portal to="title">{{ $t('mentions') }}</portal>
|
|
<x-notes :pagination="pagination" @before="before()" @after="after()"/>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue';
|
|
import { faAt } 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('mentions') as string
|
|
};
|
|
},
|
|
|
|
components: {
|
|
XNotes
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
pagination: {
|
|
endpoint: 'notes/mentions',
|
|
limit: 10,
|
|
},
|
|
faAt
|
|
};
|
|
},
|
|
|
|
methods: {
|
|
before() {
|
|
Progress.start();
|
|
},
|
|
|
|
after() {
|
|
Progress.done();
|
|
}
|
|
}
|
|
});
|
|
</script>
|