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
If you want get only author try it:
author
var postDetails = [{ author: "John", category: "Tech" }]; var inner = postDetails.map(function(e) { return e.autor; }); console.log(inner);