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

42 lines
690 B
Vue
Raw Normal View History

<template>
2021-10-23 19:03:07 +00:00
<div class="jmelgwjh">
<div class="body">
2021-12-25 04:38:53 +00:00
<XNotes class="notes" :pagination="pagination" :detail="true" :prop="'note'"/>
2021-08-16 06:21:58 +00:00
</div>
</div>
</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:29:08 +00:00
defineExpose({
[symbols.PAGE_INFO]: {
title: i18n.locale.favorites,
icon: 'fas fa-star',
bg: 'var(--bg)',
},
});
</script>
2021-08-16 06:21:58 +00:00
<style lang="scss" scoped>
.jmelgwjh {
background: var(--bg);
> .body {
box-sizing: border-box;
max-width: 800px;
margin: 0 auto;
padding: 16px;
}
}
</style>