57 lines
885 B
Vue
57 lines
885 B
Vue
<template>
|
|
<div>
|
|
<MkPagination :pagination="pagination" #default="{items}" ref="list">
|
|
<MkPagePreview v-for="page in items" :page="page" :key="page.id" class="_vMargin"/>
|
|
</MkPagination>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue';
|
|
import MkPagePreview from '@/components/page-preview.vue';
|
|
import MkPagination from '@/components/ui/pagination.vue';
|
|
import { userPage, acct } from '../../filters/user';
|
|
|
|
export default defineComponent({
|
|
components: {
|
|
MkPagination,
|
|
MkPagePreview,
|
|
},
|
|
|
|
props: {
|
|
user: {
|
|
type: Object,
|
|
required: true
|
|
},
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
pagination: {
|
|
endpoint: 'users/pages',
|
|
limit: 20,
|
|
params: {
|
|
userId: this.user.id,
|
|
}
|
|
},
|
|
};
|
|
},
|
|
|
|
watch: {
|
|
user() {
|
|
this.$refs.list.reload();
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
userPage,
|
|
|
|
acct
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
</style>
|