about summary refs log tree commit diff
path: root/pages/index.vue
blob: 2f939140032d64ca7b07a1d2c6bc5e602d2d3d22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<template>
  <div>
    <oboz-widget />
    <div style="width: 100%; padding-top: 50px">
      <h1>Ostatnie wpisy z kroniki</h1>
      <post-list :posts="posts" :max="4" />
    </div>
    <join-us />
    <facebook-feed />
  </div>
</template>

<script>
import JoinUs from '~/components/JoinUs.vue'
import FacebookFeed from '~/components/Facebook/FacebookFeed.vue'
import PostList from '~/components/Posts/PostList'
import ObozWidget from '~/components/ObozWidget'
import postListParentMixin from '~/components/Posts/PostList/parentMixin'

export default {
  name: 'HomeView',
  components: { JoinUs, FacebookFeed, PostList, ObozWidget },
  mixins: [postListParentMixin],
}
</script>