blob: d28c2cab7e7d84a20ede2308e70a011048c35493 (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
<template>
<div style="padding-top: 20px">
<h2>Ostatnie wpisy</h2>
<div v-if="posts" class="post-list">
<chronicle-post
v-for="(post, index) in posts"
:key="index"
:route="post.route"
:title="post.content.meta.title"
:description="post.content.description"
/>
</div>
</div>
</template>
<script>
import ChroniclePost from '~/components/ChroniclePost'
import k from '~/api'
export default {
components: {
ChroniclePost
},
async asyncData() {
return {
posts: process.client ? undefined : k.getPosts()
}
},
mounted() {
if (process.client && this.posts === undefined) {
this.getPosts().then(posts => (this.posts = posts))
}
},
methods: {
async getPosts() {
const r = await this.$axios.get(
`${window.location.origin}/api/posts.json`
)
return r.data
}
}
}
</script>
<style scoped>
.post-list {
display: flex;
flex-wrap: wrap;
justify-content: center;
max-width: 900px;
}
</style>
|