I am using vuejs and axios, I am trying to get blog posts from wordpress, everything working fine except one thing, I am trying to extract the thumbnail from the response, but the response data contains hyphen so I am not able to access the object, showing error. Here is what I am trying to access
family._embedded['wp:featuredmedia']['0'].media_details.sizes.family-profile-thumb.source_url
here family
is a prop, and family-profile-thumb is the specific size, I could not change that, this part creating problem, if i replace this with default sizes like thumb it will work, eg:
family._embedded['wp:featuredmedia']['0'].media_details.sizes.thumbnail.source_url
Is there a way to get this work?