2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<portal to="icon"><fa :icon="faStar"/></portal>
|
2020-07-24 18:56:52 +02:00
|
|
|
<portal to="title">{{ $t('favorites') }}</portal>
|
2020-07-27 16:25:37 +02:00
|
|
|
<x-notes :pagination="pagination" :detail="true" :prop="'note'" @before="before()" @after="after()"/>
|
2020-01-29 20:37:25 +01:00
|
|
|
</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>
|