diff options
Diffstat (limited to 'src/html/index.html')
-rw-r--r-- | src/html/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/html/index.html b/src/html/index.html index c7e398b..01f6e4e 100644 --- a/src/html/index.html +++ b/src/html/index.html @@ -19,7 +19,7 @@ }, created() { fetch(new Request('/posts/index')).then(response => response.json()) - .then(response => this.posts = response.data); + .then(response => this.posts = response); } }); } |