f6154dc0af
Co-authored-by: MeiMei <30769358+mei23@users.noreply.github.com> Co-authored-by: Satsuki Yanagi <17376330+u1-liquid@users.noreply.github.com>
49 lines
840 B
Vue
49 lines
840 B
Vue
<template>
|
|
<div>
|
|
<portal to="icon"><fa :icon="faStar"/></portal>
|
|
<portal to="title">{{ $t('favorites') }}</portal>
|
|
<x-notes :pagination="pagination" :detail="true" :extract="items => items.map(item => item.note)" @before="before()" @after="after()"/>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue';
|
|
import { faStar } 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('favorites') as string
|
|
};
|
|
},
|
|
|
|
components: {
|
|
XNotes
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
pagination: {
|
|
endpoint: 'i/favorites',
|
|
limit: 10,
|
|
params: () => ({
|
|
})
|
|
},
|
|
faStar
|
|
};
|
|
},
|
|
|
|
methods: {
|
|
before() {
|
|
Progress.start();
|
|
},
|
|
|
|
after() {
|
|
Progress.done();
|
|
}
|
|
}
|
|
});
|
|
</script>
|