Sharkey/packages/client/src/pages/user/clips.vue

51 lines
844 B
Vue
Raw Normal View History

2020-11-29 05:34:39 +02:00
<template>
<div>
2021-11-19 12:36:12 +02:00
<MkPagination #default="{items}" ref="list" :pagination="pagination">
2021-04-10 12:17:42 +03:00
<MkA v-for="item in items" :key="item.id" :to="`/clips/${item.id}`" class="item _panel _gap">
2020-11-29 05:34:39 +02:00
<b>{{ item.name }}</b>
<div v-if="item.description" class="description">{{ item.description }}</div>
</MkA>
</MkPagination>
</div>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
2021-11-11 19:02:25 +02:00
import MkPagination from '@/components/ui/pagination.vue';
2020-11-29 05:34:39 +02:00
export default defineComponent({
components: {
MkPagination,
},
props: {
user: {
type: Object,
required: true
},
},
data() {
return {
pagination: {
endpoint: 'users/clips',
limit: 20,
params: {
userId: this.user.id,
}
},
};
},
watch: {
user() {
this.$refs.list.reload();
}
},
});
</script>
<style lang="scss" scoped>
</style>