1👍
✅
I suspect this line:
this.post = await PostService.getPosts();
should be
this.posts = await PostService.getPosts();
Here’s a Codepen link. If that doesn’t fix your issue, ensure the PostService
returns correct objects.
Source:stackexchange.com