blob: 142864484d8b853df158c428619b4908b79df1a9 (
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
26
27
|
<template>
<div>
<join-us />
<konkurs-kulinarny />
<div style="width: 100%; padding-top: 50px">
<h1>Ostatnie wpisy z kroniki</h1>
<post-list :posts="posts" :max="4" />
</div>
<oboz-widget />
<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 KonkursKulinarny from '~/components/KonkursKulinarny'
import postListParentMixin from '~/components/Posts/PostList/parentMixin'
export default {
name: 'HomeView',
components: { JoinUs, FacebookFeed, PostList, ObozWidget, KonkursKulinarny },
mixins: [postListParentMixin],
}
</script>
|