about summary refs log tree commit diff
path: root/components/Posts/PostList/PostList.vue
diff options
context:
space:
mode:
Diffstat (limited to 'components/Posts/PostList/PostList.vue')
-rw-r--r--components/Posts/PostList/PostList.vue6
1 files changed, 5 insertions, 1 deletions
diff --git a/components/Posts/PostList/PostList.vue b/components/Posts/PostList/PostList.vue
index 80369a8..64070d8 100644
--- a/components/Posts/PostList/PostList.vue
+++ b/components/Posts/PostList/PostList.vue
@@ -1,5 +1,5 @@
 <template>
-  <pure-post-list v-if="posts" :posts="parsedPosts" :loading="loading" />
+  <pure-post-list v-if="posts" :next="next" :posts="parsedPosts" :loading="loading" />
 </template>
 
 <script>
@@ -17,6 +17,10 @@ export default {
     posts: {
       type: Array,
       required: false
+    },
+    next: {
+      type: Number,
+      required: false
     }
   },
   computed: {