[Vuejs]-How to automatically update vue component when data changed without refresh page

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.

Leave a comment