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

37 lines
818 B
Vue
Raw Normal View History

2020-11-29 04:34:39 +01:00
<template>
<div>
2022-11-15 04:13:04 +01:00
<MkSpacer :content-max="800">
<MkPagination v-slot="{items}" ref="list" :pagination="pagination">
<MkA v-for="item in items" :key="item.id" :to="`/clips/${item.id}`" class="item _panel _gap">
<div class="_panel">
<b>{{ item.name }}</b>
<Mfm v-if="item.description" class="description" :text="item.description"/>
</div>
</MkA>
</MkPagination>
</MkSpacer>
2020-11-29 04:34:39 +01:00
</div>
</template>
2022-08-31 16:12:22 +02:00
<script lang="ts" setup>
import { computed } from 'vue';
2022-12-12 04:24:12 +01:00
import * as misskey from 'calckey-js';
import MkPagination from '@/components/MkPagination.vue';
2020-11-29 04:34:39 +01:00
2022-08-31 16:12:22 +02:00
const props = defineProps<{
user: misskey.entities.User;
}>();
2020-11-29 04:34:39 +01:00
2022-08-31 16:12:22 +02:00
const pagination = {
endpoint: 'users/clips' as const,
limit: 20,
params: computed(() => ({
userId: props.user.id,
})),
};
2020-11-29 04:34:39 +01:00
</script>
<style lang="scss" scoped>
</style>