egirlskey/src/client/pages/mentions.vue
syuilo f6154dc0af
v12 (#5712)
Co-authored-by: MeiMei <30769358+mei23@users.noreply.github.com>
Co-authored-by: Satsuki Yanagi <17376330+u1-liquid@users.noreply.github.com>
2020-01-30 04:37:25 +09:00

47 lines
758 B
Vue

<template>
<div>
<portal to="icon"><fa :icon="faAt"/></portal>
<portal to="title">{{ $t('mentions') }}</portal>
<x-notes :pagination="pagination" :detail="true" @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>