about summary refs log tree commit diff
path: root/pages/kronika/index.vue
blob: b478a75de3f0cf28dfd008b6eb310b9bead4f1c4 (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/PostList'

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