I\'m trying to access values inside Firebase array > object.
When I try to access values inside v-for, it works well. But I cannot do this: postDetail.author. It re
Since postDetail is an array of object to access properties inside its objects, you need do something like postDetail[Index].prop
postDetail[Index].prop
var postDetail =[{"author" : "abc", "meta" : "xyz"}]; console.log(postDetail[0].author);