blob: 0e625f84cf304f807a40bc794c75d6636776fb51 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
<template>
<div>
<portal to="icon"><fa :icon="faStar"/></portal>
<portal to="title">{{ $t('favorites') }}</portal>
<x-notes :pagination="pagination" :detail="true" :prop="'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>
|