rudeshark.net/packages/client/src/pages/favorites.vue

27 lines
489 B
Vue
Raw Normal View History

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