11349561d6
* wip * wip * wip * wip * wip * wip * wip * wip * wip * Update yarn.lock * wip * wip
42 lines
732 B
Vue
42 lines
732 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 Progress from '@client/scripts/loading';
|
|
import XNotes from '@client/components/notes.vue';
|
|
import * as symbols from '@client/symbols';
|
|
|
|
export default defineComponent({
|
|
components: {
|
|
XNotes
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
[symbols.PAGE_INFO]: {
|
|
title: this.$ts.featured,
|
|
icon: 'fas fa-fire-alt'
|
|
},
|
|
pagination: {
|
|
endpoint: 'notes/featured',
|
|
limit: 10,
|
|
offsetMode: true
|
|
},
|
|
};
|
|
},
|
|
|
|
methods: {
|
|
before() {
|
|
Progress.start();
|
|
},
|
|
|
|
after() {
|
|
Progress.done();
|
|
}
|
|
}
|
|
});
|
|
</script>
|