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

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