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>
|