blob: c3a9e25105a22ace6d83dc1f2ccd8d148196e7f7 (
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
|
<template>
<div class="_section">
<XNotes class="_content" ref="notes" :pagination="pagination" @before="before" @after="after"/>
</div>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
import { faFireAlt } from '@fortawesome/free-solid-svg-icons';
import Progress from '@/scripts/loading';
import XNotes from '@/components/notes.vue';
export default defineComponent({
components: {
XNotes
},
data() {
return {
INFO: {
header: [{
title: this.$t('featured'),
icon: faFireAlt
}],
},
pagination: {
endpoint: 'notes/featured',
limit: 10,
offsetMode: true
},
faFireAlt
};
},
methods: {
before() {
Progress.start();
},
after() {
Progress.done();
}
}
});
</script>
|