2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
2022-01-07 08:34:11 +01:00
|
|
|
<MkSpacer :content-max="800">
|
|
|
|
<XNotes :pagination="pagination" :detail="true" :prop="'note'"/>
|
|
|
|
</MkSpacer>
|
2020-01-29 20:37:25 +01:00
|
|
|
</template>
|
|
|
|
|
2022-01-07 08:29:08 +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:29:08 +01:00
|
|
|
import { i18n } from '@/i18n';
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2022-01-07 08:29:08 +01:00
|
|
|
const pagination = {
|
|
|
|
endpoint: 'i/favorites',
|
|
|
|
limit: 10,
|
|
|
|
params: () => ({
|
2022-01-07 08:34:11 +01:00
|
|
|
}),
|
2022-01-07 08:29:08 +01:00
|
|
|
};
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2022-01-07 08:29:08 +01:00
|
|
|
defineExpose({
|
|
|
|
[symbols.PAGE_INFO]: {
|
|
|
|
title: i18n.locale.favorites,
|
|
|
|
icon: 'fas fa-star',
|
|
|
|
bg: 'var(--bg)',
|
2020-01-29 20:37:25 +01:00
|
|
|
},
|
|
|
|
});
|
|
|
|
</script>
|