egirlskey/packages/client/src/pages/favorites.vue

27 lines
489 B
Vue
Raw Normal View History

<template>
2022-01-07 07:34:11 +00:00
<MkSpacer :content-max="800">
<XNotes :pagination="pagination" :detail="true" :prop="'note'"/>
</MkSpacer>
</template>
2022-01-07 07:29:08 +00:00
<script lang="ts" setup>
2021-11-11 17:02:25 +00:00
import XNotes from '@/components/notes.vue';
import * as symbols from '@/symbols';
2022-01-07 07:29:08 +00:00
import { i18n } from '@/i18n';
2022-01-07 07:29:08 +00:00
const pagination = {
endpoint: 'i/favorites',
limit: 10,
params: () => ({
2022-01-07 07:34:11 +00:00
}),
2022-01-07 07:29:08 +00:00
};
2022-01-07 07:29:08 +00:00
defineExpose({
[symbols.PAGE_INFO]: {
title: i18n.locale.favorites,
icon: 'fas fa-star',
bg: 'var(--bg)',
},
});
</script>