0👍
next(vm => ...)
callback is triggered after the instance is created, the state that is initialized there shouldn’t be relied on because initial rendering occurs with uninitialized state.
It should be either:
return {
post: [],
...
Or:
<article v-if="post" ...>
Source:stackexchange.com