blob: 4a89a48b3105a963e8e8b656b4806c4886356154 (
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 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: k.getPosts()
}
},
mounted() {
this.getPosts()
},
methods: {
getPosts() {
if (this.posts.length < 1) {
this.$axios
.get(`${window.location.origin}/api/posts.json`)
.then(r => (this.posts = r.data))
}
console.log(this.posts)
}
}
}
</script>
<style scoped>
.post-list {
display: flex;
flex-wrap: wrap;
justify-content: center;
max-width: 900px;
}
</style>
|