about summary refs log tree commit diff
path: root/pages/kronika/index.vue
blob: 8142a6c6de7733c3da17918af2f795228b69c3c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<template>
  <div style="padding-top: 20px">
    <h2>Ostatnie wpisy</h2>
    <post-list :posts="posts" />
  </div>
</template>

<script>
import PostList from '~/components/Posts/PostList'
import postListParentMixin from '~/components/Posts/PostList/parentMixin'

export default {
  components: {
    PostList
  },
  mixins: [postListParentMixin]
}
</script>