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

42 lines
690 B
Vue
Raw Normal View History

<template>
2021-10-23 22:03:07 +03:00
<div class="jmelgwjh">
<div class="body">
2021-12-25 06:38:53 +02:00
<XNotes class="notes" :pagination="pagination" :detail="true" :prop="'note'"/>
2021-08-16 09:21:58 +03:00
</div>
</div>
</template>
2022-01-07 09:29:08 +02:00
<script lang="ts" setup>
2021-11-11 19:02:25 +02:00
import XNotes from '@/components/notes.vue';
import * as symbols from '@/symbols';
2022-01-07 09:29:08 +02:00
import { i18n } from '@/i18n';
2022-01-07 09:29:08 +02:00
const pagination = {
endpoint: 'i/favorites',
limit: 10,
params: () => ({
})
};
2022-01-07 09:29:08 +02:00
defineExpose({
[symbols.PAGE_INFO]: {
title: i18n.locale.favorites,
icon: 'fas fa-star',
bg: 'var(--bg)',
},
});
</script>
2021-08-16 09:21:58 +03:00
<style lang="scss" scoped>
.jmelgwjh {
background: var(--bg);
> .body {
box-sizing: border-box;
max-width: 800px;
margin: 0 auto;
padding: 16px;
}
}
</style>