Added profile images to /posts/_slug page
• Had to add the indiv user's `account` data Object into the `post` Object fetched via asyncData(). Can't use push() as that's for arrays and `post` is an Object.
//my object
var sendData = {field1:value1, field2:value2}
//add element
sendData['field3'] = value3
• because sorted comments is a computed() data, I had to create a mounted() method to first merge-match `accounts` array to `comments` array, using forEach() and push(). Can't do the merging and matching within computed property. Then use the merged array as input to sorted comments computed property.
//my object
var sendData = {field1:value1, field2:value2}
//add element
sendData['field3'] = value3
• because sorted comments is a computed() data, I had to create a mounted() method to first merge-match `accounts` array to `comments` array, using forEach() and push(). Can't do the merging and matching within computed property. Then use the merged array as input to sorted comments computed property.