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

31 lines
691 B
Vue
Raw Normal View History

2020-11-29 04:34:39 +01:00
<template>
<MkSpacer :content-max="800">
<MkPagination v-slot="{items}" ref="list" :pagination="pagination">
<MkPagePreview v-for="page in items" :key="page.id" :page="page" class="_gap"/>
</MkPagination>
</MkSpacer>
2020-11-29 04:34:39 +01:00
</template>
<script lang="ts" setup>
import { computed } from 'vue';
2022-12-12 04:24:12 +01:00
import * as misskey from 'calckey-js';
import MkPagePreview from '@/components/MkPagePreview.vue';
import MkPagination from '@/components/MkPagination.vue';
2020-11-29 04:34:39 +01:00
const props = defineProps<{
user: misskey.entities.User;
}>();
2020-11-29 04:34:39 +01:00
const pagination = {
endpoint: 'users/pages' as const,
limit: 20,
params: computed(() => ({
userId: props.user.id,
})),
};
2020-11-29 04:34:39 +01:00
</script>
<style lang="scss" scoped>
</style>