about summary refs log tree commit diff
path: root/pages/kronika/index.vue
blob: d9685c106619309552c906cdb0eba0a124421dd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<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>