2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
2021-10-24 17:13:54 +02:00
|
|
|
<MkSpacer :content-max="800">
|
2021-12-25 05:38:53 +01:00
|
|
|
<XNotes ref="notes" :pagination="pagination"/>
|
2021-10-24 17:13:54 +02:00
|
|
|
</MkSpacer>
|
2020-01-29 20:37:25 +01:00
|
|
|
</template>
|
|
|
|
|
2022-01-07 08:34:11 +01:00
|
|
|
<script lang="ts" setup>
|
2021-11-11 18:02:25 +01:00
|
|
|
import XNotes from '@/components/notes.vue';
|
|
|
|
import * as symbols from '@/symbols';
|
2022-01-07 08:34:11 +01:00
|
|
|
import { i18n } from '@/i18n';
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2022-01-07 08:34:11 +01:00
|
|
|
const pagination = {
|
2022-01-12 18:26:10 +01:00
|
|
|
endpoint: 'notes/featured' as const,
|
2022-01-07 08:34:11 +01:00
|
|
|
limit: 10,
|
|
|
|
offsetMode: true,
|
|
|
|
};
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2022-01-07 08:34:11 +01:00
|
|
|
defineExpose({
|
|
|
|
[symbols.PAGE_INFO]: {
|
|
|
|
title: i18n.locale.featured,
|
|
|
|
icon: 'fas fa-fire-alt',
|
|
|
|
bg: 'var(--bg)',
|
2020-01-29 20:37:25 +01:00
|
|
|
},
|
|
|
|
});
|
|
|
|
</script>
|