44 lines
731 B
Vue
44 lines
731 B
Vue
<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: {
|
|
title: this.$t('featured'),
|
|
icon: faFireAlt
|
|
},
|
|
pagination: {
|
|
endpoint: 'notes/featured',
|
|
limit: 10,
|
|
offsetMode: true
|
|
},
|
|
faFireAlt
|
|
};
|
|
},
|
|
|
|
methods: {
|
|
before() {
|
|
Progress.start();
|
|
},
|
|
|
|
after() {
|
|
Progress.done();
|
|
}
|
|
}
|
|
});
|
|
</script>
|