diff options
author | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2019-10-21 19:53:02 +0200 |
---|---|---|
committer | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2019-10-21 19:53:02 +0200 |
commit | 17fc6a6b4507e5535d8b6989b66da5bac323e87b (patch) | |
tree | e2edf46d74a376d0359bcdeb5d19646afeb218e4 /pages/kronika/index.vue | |
parent | 424eaa9e8098cef762b1a2a7565d37944bb25306 (diff) | |
download | puszcza-17fc6a6b4507e5535d8b6989b66da5bac323e87b.tar.gz puszcza-17fc6a6b4507e5535d8b6989b66da5bac323e87b.zip |
Add PostList
Diffstat (limited to 'pages/kronika/index.vue')
-rw-r--r-- | pages/kronika/index.vue | 33 |
1 files changed, 3 insertions, 30 deletions
diff --git a/pages/kronika/index.vue b/pages/kronika/index.vue index cff3551..d9685c1 100644 --- a/pages/kronika/index.vue +++ b/pages/kronika/index.vue @@ -1,43 +1,16 @@ <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> + <post-list /> </div> </template> <script> -import ChroniclePost from '~/components/ChroniclePost' -import k from '~/api' +import PostList from '~/components/PostList' 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) - } + PostList } } </script> |