egirlskey/packages/frontend/src/pages/user/pages.vue

31 lines
694 B
Vue
Raw Normal View History

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