summaryrefslogtreecommitdiff
path: root/packages/client/src/pages/explore.featured.vue
blob: 12de9e412cf4ca93bf2306410e51b7b0de2a67e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<template>
<MkSpacer :content-max="800">
	<XNotes ref="notes" :pagination="pagination"/>
</MkSpacer>
</template>

<script lang="ts" setup>
import XNotes from '@/components/notes.vue';
import { i18n } from '@/i18n';

const pagination = {
	endpoint: 'notes/featured' as const,
	limit: 10,
	offsetMode: true,
};
</script>