enhance(client): ハイライトをみつけるに統合
This commit is contained in:
parent
add6e9b14b
commit
afe0d9a266
7 changed files with 202 additions and 219 deletions
16
packages/client/src/pages/explore.featured.vue
Normal file
16
packages/client/src/pages/explore.featured.vue
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
<template>
|
||||
<MkSpacer :content-max="800">
|
||||
<XNotes ref="notes" :pagination="pagination"/>
|
||||
</MkSpacer>
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
import XNotes from '@/components/notes.vue';
|
||||
import { i18n } from '@/i18n';
|
||||
|
||||
const pagination = {
|
||||
endpoint: 'notes/featured' as const,
|
||||
limit: 10,
|
||||
offsetMode: true,
|
||||
};
|
||||
</script>
|
||||
Loading…
Add table
Add a link
Reference in a new issue