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

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

export default {
  components: {
    PostList
  }
}
</script>