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

34 lines
716 B
Vue
Raw Normal View History

2020-11-29 04:34:39 +01:00
<template>
2023-04-08 02:01:42 +02:00
<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>
2023-04-08 02:01:42 +02:00
import { computed } from "vue";
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 = {
2023-04-08 02:01:42 +02:00
endpoint: "users/pages" as const,
limit: 20,
params: computed(() => ({
userId: props.user.id,
})),
};
2020-11-29 04:34:39 +01:00
</script>
2023-04-08 02:01:42 +02:00
<style lang="scss" scoped></style>