mirror of
https://iceshrimp.dev/crimekillz/trashposs
synced 2024-11-24 01:39:06 +01:00
17 lines
319 B
Vue
17 lines
319 B
Vue
<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>
|