about summary refs log tree commit diff
path: root/components/Posts/PostList/parentMixin.js
blob: e5b06edb0d5aff837ccb482418bc3b367764da95 (plain)
1
2
3
4
5
6
7
8
9
import { getPosts } from './index'

export default {
  async asyncData() {
    return {
      posts: await getPosts()
    }
  }
}